summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index bb76649..9c63549 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -3,6 +3,8 @@
package="com.android.dreams.basic"
>
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
+ <!-- Permission required for third party keyguard -->
+ <uses-permission android:name="android.permission.THIRD_PARTY_KEYGUARD" />
<application android:label="@string/app_name">
<service
android:name="Colors"
@@ -15,5 +17,15 @@
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
+
+ <service
+ android:name="ColorsLockScreen"
+ android:exported="true"
+ android:icon="@mipmap/colors_icon"
+ android:label="@string/color_dream_name">
+ <intent-filter>
+ <action android:name="cyanogenmod.externalviews.KeyguardExternalViewProviderService" />
+ </intent-filter>
+ </service>
</application>
</manifest>