cmsdk: Move lookup provider logic to CMSettings.

Change-Id: I239b1d5b56b940e591547ab1c50b6c1d34af586c
This commit is contained in:
Adnan Begovic
2015-11-10 13:31:03 -08:00
parent b2093b969f
commit dac1c3eac1
2 changed files with 133 additions and 0 deletions

View File

@@ -913,6 +913,62 @@ public final class CMSettings {
* @hide
*/
public static final String PROXIMITY_ON_WAKE = "proximity_on_wake";
/**
* Enable looking up of phone numbers of nearby places
*
* @hide
*/
public static final String ENABLE_FORWARD_LOOKUP = "enable_forward_lookup";
/**
* Enable looking up of phone numbers of people
*
* @hide
*/
public static final String ENABLE_PEOPLE_LOOKUP = "enable_people_lookup";
/**
* Enable looking up of information of phone numbers not in the contacts
*
* @hide
*/
public static final String ENABLE_REVERSE_LOOKUP = "enable_reverse_lookup";
/**
* The forward lookup provider
*
* @hide
*/
public static final String FORWARD_LOOKUP_PROVIDER = "forward_lookup_provider";
/**
* The people lookup provider
*
* @hide
*/
public static final String PEOPLE_LOOKUP_PROVIDER = "people_lookup_provider";
/**
* The reverse lookup provider
*
* @hide
*/
public static final String REVERSE_LOOKUP_PROVIDER = "reverse_lookup_provider";
/**
* The OpenCNAM paid account ID
*
* @hide
*/
public static final String DIALER_OPENCNAM_ACCOUNT_SID = "dialer_opencnam_account_sid";
/**
* The OpenCNAM authentication token
*
* @hide
*/
public static final String DIALER_OPENCNAM_AUTH_TOKEN = "dialer_opencnam_auth_token";
}
/**