summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJordan Liu <jminjie@google.com>2019-10-22 14:42:07 -0700
committerJordan Liu <jminjie@google.com>2019-11-15 11:57:49 -0800
commit26e820c5f3f3fc579d8d2e3043005246358a5e1d (patch)
treea3386444507dfbbf0b90f9b20cb43032ff202644 /AndroidManifest.xml
parent376f9facee3ee70d64c9bb606487af402d9b11bc (diff)
downloadplatform_packages_modules_CellBroadcastService-26e820c5f3f3fc579d8d2e3043005246358a5e1d.tar.gz
platform_packages_modules_CellBroadcastService-26e820c5f3f3fc579d8d2e3043005246358a5e1d.tar.bz2
platform_packages_modules_CellBroadcastService-26e820c5f3f3fc579d8d2e3043005246358a5e1d.zip
Move CellBroadcastProvider to module
Bug: 135956699 Test: atest CellBroadcastServiceTests and manual Change-Id: Ifc6a896fbbad7a5f08588e730f8bfc642f097967 Merged-In: Ifc6a896fbbad7a5f08588e730f8bfc642f097967
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2dd2140..4dc0b97 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -38,12 +38,16 @@
android:process="com.android.phone">
<service android:name="DefaultCellBroadcastService"
- android:process="com.android.phone"
android:exported="true"
android:permission="android.permission.BIND_CELL_BROADCAST_SERVICE">
<intent-filter>
<action android:name="android.telephony.CellBroadcastService" />
</intent-filter>
</service>
+ <provider android:name="CellBroadcastProvider"
+ android:authorities="cellbroadcasts"
+ android:exported="true"
+ android:singleUser="true"
+ android:multiprocess="false" />
</application>
</manifest>