Chad Brubaker 5bd21e9184 Expose settings provider to Instant Apps
Provider enforcement is not yet in, but the settings provider is needed
so expose it now.

Test: Builds
Change-Id: I9afffb45043220e4b85778bbd4f5c4143831fc74
2017-03-09 13:07:36 -08:00

24 lines
984 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.providers.settings"
coreApp="true"
android:sharedUserId="android.uid.system">
<application android:allowClearUserData="false"
android:label="@string/app_label"
android:process="system"
android:backupAgent="SettingsBackupAgent"
android:killAfterRestore="false"
android:icon="@mipmap/ic_launcher_settings"
android:defaultToDeviceProtectedStorage="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" />
</application>
</manifest>