diff options
| author | Chen Xu <fionaxu@google.com> | 2019-10-20 19:32:33 -0700 |
|---|---|---|
| committer | Chen Xu <fionaxu@google.com> | 2019-11-04 15:52:51 -0800 |
| commit | 1843fb2db753d39ced859628382ce6a2761547bf (patch) | |
| tree | c3367cdd19938e76604a6f7e6ed296f362b8b01e /AndroidManifest.xml | |
| parent | 1177505579df46c38120f9c68a765cec828aadf7 (diff) | |
| download | platform_packages_modules_CellBroadcastService-1843fb2db753d39ced859628382ce6a2761547bf.tar.gz platform_packages_modules_CellBroadcastService-1843fb2db753d39ced859628382ce6a2761547bf.tar.bz2 platform_packages_modules_CellBroadcastService-1843fb2db753d39ced859628382ce6a2761547bf.zip | |
prepare cellbroadcastservice to be a mainline module
1. prepare two build targets one for updatable module another
for the legacy platform module with diferent config
2. switch to the updatable module as this is a mandatory module
3. update jarjar rules
Bug: 135956699
Test: unit test and test app
Change-Id: I1b3fad912c6fa5b921fef077301005a6af0c6402
Diffstat (limited to 'AndroidManifest.xml')
| -rw-r--r-- | AndroidManifest.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 4dc0b97..cafdf25 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -17,7 +17,9 @@ */ --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - android:sharedUserId="android.uid.phone" + android:sharedUserId="android.uid.networkstack" + android:versionCode="300000000" + android:versionName="R-initial" package="com.android.cellbroadcastservice"> <original-package android:name="com.android.cellbroadcastservice" /> @@ -29,15 +31,18 @@ <uses-permission android:name="android.permission.READ_CELL_BROADCASTS" /> <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> + <uses-permission android:name="android.permission.BROADCAST_SMS" /> <uses-sdk android:minSdkVersion="29"/> <application android:label="Module used to handle cell broadcasts." android:defaultToDeviceProtectedStorage="true" android:directBootAware="true" - android:process="com.android.phone"> + android:persistent="true" + android:process="com.android.networkstack.process"> <service android:name="DefaultCellBroadcastService" + android:process="com.android.networkstack.process" android:exported="true" android:permission="android.permission.BIND_CELL_BROADCAST_SERVICE"> <intent-filter> |
