027bcd91b7
so the package can send notifications on T+ Bug: 194833441 Change-Id: I973ef85f15bc5088a32a42f197fd5a81726639d3
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.providers.settings"
|
|
coreApp="true"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
<application android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:process="system"
|
|
android:backupAgent="SettingsBackupAgent"
|
|
android:killAfterRestore="false"
|
|
android:restoreAnyVersion="true"
|
|
android:icon="@mipmap/ic_launcher_settings"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:forceQueryable="true"
|
|
android:directBootAware="true">
|
|
|
|
<provider android:name="SettingsProvider"
|
|
android:authorities="settings"
|
|
android:multiprocess="false"
|
|
android:exported="true"
|
|
android:singleUser="true"
|
|
android:initOrder="100"
|
|
android:visibleToInstantApps="true" />
|
|
|
|
<service
|
|
android:name="WriteFallbackSettingsFilesJobService"
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
android:exported="true"/>
|
|
</application>
|
|
</manifest>
|