summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorClark Scheff <clark@cyngn.com>2015-02-20 19:59:52 -0800
committerClark Scheff <clark@cyngn.com>2015-02-27 10:10:31 -0800
commitf4207231fe36963ee977ab85c27ecccbd2b7dd93 (patch)
tree6695c813c71679bc0c38b5da436d53df295f3f24 /AndroidManifest.xml
parente58652dbcbcbd0967fce0128b123ffdad240de98 (diff)
downloadpackages_apps_ThemeChooser-f4207231fe36963ee977ab85c27ecccbd2b7dd93.tar.gz
packages_apps_ThemeChooser-f4207231fe36963ee977ab85c27ecccbd2b7dd93.tar.bz2
packages_apps_ThemeChooser-f4207231fe36963ee977ab85c27ecccbd2b7dd93.zip
Themes: Enhanced theming capabilities [3/3]
This is really per-app theming but the subject is being named the same as the open source commits to avoid confusion. Change-Id: I811463be11359d747065ad66f802a55e1ab7db08
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 73e497a..b175535 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -30,6 +30,10 @@
<!-- Used for disabling theme chooser icon if store exists -->
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+ <!-- Used for per-app themes -->
+ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
+ <uses-permission android:name="android.permission.VIBRATE"/>
+
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
@@ -101,6 +105,8 @@
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
+
+ <service android:name="com.cyngn.theme.perapptheming.PerAppThemingWindow" />
</application>
</manifest>