diff options
| -rw-r--r-- | api/system-current.txt | 1 | ||||
| -rw-r--r-- | core/java/android/app/role/RoleControllerService.java | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index e6319e3762b1..89433ce2b449 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -1125,7 +1125,6 @@ package android.app.role { method public abstract boolean onIsApplicationQualifiedForRole(@NonNull String, @NonNull String); method public abstract boolean onIsRoleVisible(@NonNull String); method @WorkerThread public abstract boolean onRemoveRoleHolder(@NonNull String, @NonNull String, int); - method @WorkerThread public abstract void onSmsKillSwitchToggled(boolean); field public static final String SERVICE_INTERFACE = "android.app.role.RoleControllerService"; } diff --git a/core/java/android/app/role/RoleControllerService.java b/core/java/android/app/role/RoleControllerService.java index dd4d9d378e83..312761d43afd 100644 --- a/core/java/android/app/role/RoleControllerService.java +++ b/core/java/android/app/role/RoleControllerService.java @@ -262,6 +262,8 @@ public abstract class RoleControllerService extends Service { * Cleanup appop/permissions state in response to sms kill switch toggle * * @param enabled whether kill switch was turned on + * + * @hide */ //STOPSHIP: remove this api before shipping a final version @WorkerThread |