summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSantiago Etchebehere <santie@google.com>2019-01-17 11:32:59 -0800
committerSantiago Etchebehere <santie@google.com>2019-01-18 10:30:49 -0800
commitb36df5d5365609abc1a0e77cb83c0223a803284c (patch)
treef5c6418e6f620fad1d0d2a69a7055d96629425a6 /AndroidManifest.xml
parent80e1ceed940256c6f55ad67eb8a27182912d8b32 (diff)
downloadThemePicker-b36df5d5365609abc1a0e77cb83c0223a803284c.tar.gz
Add permissions to Manifest for applying Themes
Add CHANGE_OVERLAY_PACKAGES and WRITE_SECURE_SETTINGS permissions needed to apply themes and clocks Bug: 118758604 Change-Id: I26530321b80b6ebd4acff4293d0d20a0fd1f9111
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index da3d15ef..dae680ee 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -2,7 +2,11 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.wallpaper">
- <uses-sdk android:targetSdkVersion="28" android:minSdkVersion="28"/>
+ <uses-sdk android:targetSdkVersion="Q" android:minSdkVersion="Q"/>
+
+ <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"/>
+ <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
+
<application
android:extractNativeLibs="false"
android:hardwareAccelerated="true"