Solved, see comment

Any idea on how to fix google contact sync for a android device?

The sync is starting but never completes, no error is shown and nothing happens. Only the Contact app is having those issues. Every other google app is syncing normally.

I do use an old OnePlus Nord and just noticed that issue as it read "last sync 45 weeks ago"

Already tried the default troubleshooting steps, like re adding the account, cache clear ...

#Google #Android #GoogleHelp #GoogleContacts #Solved

Lifehacker: Use Google’s New ‘Recovery Contacts’ to Let a Friend Help You Get Back Into Your Account. “From the Recovery Contacts page, click the button to add a contact, then enter someone you trust (you’ll see several suggestions) and send them a request to be a Recovery Contact for you. Once they accept it, they’ll be able to help you get your account back if you ever find yourself […]

https://rbfirehose.com/2025/10/19/lifehacker-use-googles-new-recovery-contacts-to-let-a-friend-help-you-get-back-into-your-account/

Lifehacker: Use Google’s New ‘Recovery Contacts’ to Let a Friend Help You Get Back Into Your Account | ResearchBuzz: Firehose

ResearchBuzz: Firehose | Individual posts from ResearchBuzz
#OpenAI is rolling out support for #Gmail, #GoogleCalendar, and #GoogleContacts #Connectors in #ChatGPT (Pro). This allows ChatGPT to reference information from these services in conversations, making it faster and easier to bring information into chats. https://www.bleepingcomputer.com/news/artificial-intelligence/openai-rolls-out-gmail-calendar-and-contacts-integration-in-chatgpt/?eicker.news #tech #media #news
OpenAI rolls out Gmail, Calendar, and Contacts integration in ChatGPT

OpenAI wants ChatGPT to know more about you, including your emails, calendar events in Google Calendar and even your Google contacts to reference everything in a conversation.

BleepingComputer

Dus je hebt een #Android telefoon en je wilt van #Google af.

#Mail kan van een ander
#Agenda kan van een ander

Alles kan anders behalve de #telefoondailer om te bellen dat gaat niet. Want die haalt de gegevens toch weer online vanuit #GoogleContacts.

Iemand een oplossing?

#ontgooglen #degoogle

This week, we added an unusual feature to ChronoLink:

You can now use our #CalendarSynchronization service to create calendar events for the #birthdays of your Google Contacts. For details (including the answer to "Why would one need that when Google offers similar functionality?"), see https://www.chronolink.app/userguide/systems/google-contacts/.

Join our free public beta, no strings attached!
https://www.chronolink.app

#Calendar #GoogleContacts #GoogleCalendar #IndieDev #IndieApps #SaaS

Birthdays of Google Contacts - ChronoLink

For those of you who use Google Contacts but not Gmail and don't want Contacts to open a Gmail compose window when you click on an email address for one of your contacts, I have a solution:
https://blog.kamens.us/2025/02/02/tampermonkey-script-to-un-gmail-google-contacts/
#FOSS #Google #GoogleContacts #Gmail #Tampermonkey
Tampermonkey script to un-Gmail Google Contacts

When you click on a contact’s email address in the Google Contacts web app, instead of opening a new draft in your default email app with the “To” field populated with that email …

Something better to do

Tampermonkey script to un-Gmail Google Contacts

When you click on a contact’s email address in the Google Contacts web app, instead of opening a new draft in your default email app with the “To” field populated with that email address, which is what it should do, Google Contacts opens a Gmail compose window.

I hate this behavior. While I do have a Gmail account, it is not my default email account, and I hardly ever use it. I want email addresses in Google Contacts to do what they do on every other web page: open a new draft in my default email app.

So I wrote a Tampermonkey script to implement that behavior. You can find it here. And the code is also below, in case you prefer to just copy and paste it from here.

Share and enjoy!

// ==UserScript==// @name un-Gmail Google Contacts// @copyright Copyright 2025 Jonathan Kamens// @license GPL// @namespace http://tampermonkey.net/// @version 2025-02-03// @description change gmail links in Google Contacts to mailto: links// @author Jonathan Kamens <[email protected]>// @match https://contacts.google.com/*// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com// @grant none// ==/UserScript==// Instead of displaying email addresses as mailto: links as it rightfully// should, the Google Contacts web app sends you to Gmail when you click on// them. This script changes the email addresses back into mailto: links so// that when you click on them they open in your configured email app.//// Uses a mutation observer because the Contacts app dynamically inserts content// into the page after the browser thinks the page is finished loading.(function() { 'use strict'; let callback = (mutationList, observer) => { let addresses = document.evaluate( "//span[starts-with(@href,'mailto:') or " + "starts-with(@data-href,'mailto:')]", document); let addressElement; while (addressElement = addresses.iterateNext()) { let href = addressElement.getAttribute("href") || addressElement.getAttribute("data-href"); let addressString = href.substring(7); let anchor = document.createElement("a") anchor.setAttribute("href", `mailto:${addressString}`); anchor.innerText = addressString; addressElement.replaceWith(anchor); } }; let observer = new MutationObserver(callback); observer.observe(document, {subtree: true, childList: true});})();

#Gmail #Google #GoogleContacts #Tampermonkey

Home | Tampermonkey

Home

#GoogleContacts

Google Contact tests Google Play Store style search bar

📝 Read - https://thespandroid.blogspot.com/2024/03/Google-Contacts-Search-Bar-Revamp.html?m=1

Enable on your rooted device -

📦 Package -
com.google.android.contacts#com.google.android.contacts

🏳️ Flag - 45619663

#Google #Android

Google Contacts tests a Play Store style search bar

This new change separates the search bar, the plus sign and the profile switcher circle. We have all seen this search UI in the Google Play Store...

The SP Android

#GoogleContacts

Google Contacts new and redesigned Organize tab

This change is part of Google Contacts version 4.27 but not available for anyone. This re-arranges the whole settings UI with clear description of each setting. If you have root, it can be enabled with the flag.

Thanks to nail sadykov for the flag.

📦 Package -
com.google.android.contacts#com.google.android.contacts

🏳️ Flag - 45621130

#google #android #tech # news

#GoogleContacts

Google Contacts Minor UI revamp and new feature to view messages on widgets

📝 Read - https://thespandroid.blogspot.com/2024/02/Google-Contacts-Messages-on-w.html

Google Contacts Minor UI revamp and new feature to view messages on widgets

These changes are a part of Google Contacts 4.26 but are currently hidden behind flags. I was able to activate the flags and here are some screensho..

The SP Android