diff options
| -rwxr-xr-x | core/java/android/provider/ContactsContract.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index 08621ea83823..54a2273bf076 100755 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -7900,6 +7900,16 @@ public final class ContactsContract { "com.android.contacts.action.GET_MULTIPLE_PHONES"; /** + * A broadcast action which is sent when any change has been made to the profile, such + * as the profile name or the picture. A receiver must have + * the android.permission.READ_PROFILE permission. + * + * @hide + */ + public static final String ACTION_PROFILE_CHANGED = + "android.provider.Contacts.PROFILE_CHANGED"; + + /** * Used with {@link #SHOW_OR_CREATE_CONTACT} to force creating a new * contact if no matching contact found. Otherwise, default behavior is * to prompt user with dialog before creating. |