summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorClark Scheff <clark@scheffsblend.com>2016-08-28 09:21:05 -0700
committerClark Scheff <clark@scheffsblend.com>2016-08-28 09:21:33 -0700
commitbcd90a38b28f7c57bce8057d855e4c276aab2776 (patch)
tree9524b01c9e7c84ff3934ac035481d7eb9598478b /AndroidManifest.xml
parentde36713290379cc4e0de6e0bc2cfc25e3258133f (diff)
downloadpackages_apps_ThemeChooser-bcd90a38b28f7c57bce8057d855e4c276aab2776.zip
packages_apps_ThemeChooser-bcd90a38b28f7c57bce8057d855e4c276aab2776.tar.gz
packages_apps_ThemeChooser-bcd90a38b28f7c57bce8057d855e4c276aab2776.tar.bz2
Theme chooser for the people
Let freedom ring! Change-Id: I12b3e6b5d46eb2e13afd841dfd5c215af64188d8 TICKET: OSS-67
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml34
1 files changed, 26 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 0ca8a2f..6ed9716 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,6 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 Cyanogen, Inc.
+ Copyright (C) 2016 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.cyngn.theme.chooser"
+ package="org.cyanogenmod.theme.chooser"
android:versionCode="200"
android:versionName="2.0" >
@@ -38,7 +55,7 @@
<!-- Used to toggle Live Lock Screen setting -->
<uses-permission android:name="cyanogenmod.permission.WRITE_SECURE_SETTINGS" />
- <permission android:name="com.cyngn.themes.permission.THEMES_APP"
+ <permission android:name="org.cyanogenmod.themes.permission.THEMES_APP"
android:protectionLevel="signatureOrSystem" />
<uses-sdk
@@ -50,9 +67,10 @@
android:icon="@mipmap/ic_app_themes"
android:label="@string/app_name"
android:theme="@style/ThemeChooserTheme" >
- <activity android:name="com.cyngn.theme.chooser.ChooserActivity"
+ <activity android:name="org.cyanogenmod.theme.chooser.ChooserActivity"
android:label="@string/app_name"
android:theme="@style/ThemeChooserTheme"
+ android:configChanges="themeChange"
android:launchMode="singleTop"
android:screenOrientation="sensorPortrait">
<intent-filter>
@@ -74,8 +92,8 @@
</intent-filter>
</activity>
- <activity-alias android:name="com.cyngn.theme.chooser.ChooserLauncher"
- android:targetActivity="com.cyngn.theme.chooser.ChooserActivity"
+ <activity-alias android:name="org.cyanogenmod.theme.chooser.ChooserLauncher"
+ android:targetActivity="org.cyanogenmod.theme.chooser.ChooserActivity"
android:label="@string/app_name"
android:icon="@mipmap/ic_app_themes">
<intent-filter>
@@ -84,7 +102,7 @@
</intent-filter>
</activity-alias>
- <receiver android:name="com.cyngn.theme.chooser.AppReceiver" >
+ <receiver android:name="org.cyanogenmod.theme.chooser.AppReceiver" >
<intent-filter>
<action android:name="cyanogenmod.intent.action.THEME_INSTALLED" />
<action android:name="cyanogenmod.intent.action.THEME_REMOVED" />
@@ -99,14 +117,14 @@
</intent-filter>
</receiver>
- <service android:name="com.cyngn.theme.chooser.NotificationHijackingService"
+ <service android:name="org.cyanogenmod.theme.chooser.NotificationHijackingService"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
- <service android:name="com.cyngn.theme.perapptheming.PerAppThemingWindow" />
+ <service android:name="org.cyanogenmod.theme.perapptheming.PerAppThemingWindow" />
</application>
</manifest>