Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find Android users in your contact list

Tags:

java

android

My app has an option to share its content with friends in user's contact list.

However, because it's only available for Android users, is there a way to find out what people in my contact list have an android device?

That way I could present a filtered list to my customers, who may sometimes have thousands of people in their contact book.

I was thinking of filtering only Gmail addresses, but that isn't very good indication of the person being an android owner. I know Google can tell, because they tie devices to Google email addresses (they even know what device and Android version is used by everyone) , but how can I tell?

like image 515
jjj Avatar asked Nov 20 '13 11:11

jjj


People also ask

How do I find hidden contacts on Android?

To view contacts in Secure Folder, tap the Secure Folder icon on your Home screen or apps menu. Authenticate your account, and then tap Contacts in Secure Folder to view your hidden contacts.


1 Answers

I'm assuming that you want to share content from your app on the phone of user A to your app on the phone of user B right? So you don't want to use a third party app (like email) to share your content.

I don't think that it is possible to get all contacts that also use your app directly from your contact list. If the scenario I described above is true, you could do it like e.g. WhatsApp or similar Apps.

They upload the contact list of the phone to their servers and compare them against their user database. This way they can identify all users in your contact list that also use the App. You could do it in a similar way to identify all contacts on a users phone that also use your app.

like image 103
mvieghofer Avatar answered Oct 17 '22 21:10

mvieghofer