Edit : Changed JellyBean to cyanogenmod 10 as it probably represents a cyanogenic function
I noticed that my phone under the displays of the CyanogenMod10 phone in the call log is the (approximate) location of the callers (only if the landline phone number is not in my contacts).
It does not just rely on the country code, because it also displays the city of the caller when it is detected. I looked through the Contacts application and the values ββfound were obtained from the database (in com.android.contacts.CallDetailActivity)
final String countryIso = callCursor.getString(COUNTRY_ISO_COLUMN_INDEX); final String geocode = callCursor.getString(GEOCODED_LOCATION_COLUMN_INDEX);
So, although it was in the Phone phone application after successfully placing or receiving a call. But I quickly lost myself in the source ... I would like to know where and (briefly) how these values ββare set and the geocode is enabled.
Are phone numbers sent to a mysterious web service?
Does Cyanogen have a table with all country codes and city prefixes of the world (I doubt it)?
Or does the database load depending on the country in which you are located?
source share