Add service-state content provider
Add the ServiceStateProvider which clients can use to get the current
ServiceState given a subId and be notified when the service state
changes.
Test: runtest --path ServiceStateProviderTest.java
Bug: 33756364
Change-Id: Iecfee79fca45accbf701bc7729229c60ecc0cdbb
Merged-In: Iecfee79fca45accbf701bc7729229c60ecc0cdbb
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index a2d0bda..1ca6c9a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -48,6 +48,13 @@
android:singleUser="true"
android:multiprocess="false" />
+ <provider android:name="ServiceStateProvider"
+ android:authorities="service-state"
+ android:exported="true"
+ android:singleUser="true"
+ android:writePermission="android.permission.MODIFY_PHONE_STATE"
+ android:multiprocess="false" />
+
<!-- This is a singleton provider that is used by all users.
A new instance is not created for each user. And the db is shared
as well. -->