Paul Duffin f52e475a1c Remove unnecessary <uses-library> for android.test.runner
A previous change mistakenly added the dependency on <uses-library>.

Bug: 30188076
Test: make, flash, install, check that it works properly
Change-Id: If2a769896e705c4c301c14e3e0f3288469f01c17
2018-01-26 15:05:54 +00:00

25 lines
1.0 KiB
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:restoreAnyVersion="true"
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>