summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-08-16 17:33:34 -0400
committerChris Wren <cwren@android.com>2012-08-23 09:49:39 -0400
commitc8ca07eb52a54efe327d024dc542e0a7f8849bfb (patch)
tree0b708e6bea60854beaf9f4184d857b8ca2bff7e4 /AndroidManifest.xml
parent7a809b2eda2d9cf8439202e03a092e850bfde1dc (diff)
downloadandroid_packages_screensavers_PhotoTable-c8ca07eb52a54efe327d024dc542e0a7f8849bfb.tar.gz
android_packages_screensavers_PhotoTable-c8ca07eb52a54efe327d024dc542e0a7f8849bfb.tar.bz2
android_packages_screensavers_PhotoTable-c8ca07eb52a54efe327d024dc542e0a7f8849bfb.zip
Example Dream: photos
An example screensaver that shows local photos. Change-Id: I2997c4f8ab35777d96df31a46f2f55044e3114c2
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..114a8ef
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.dreams.phototable"
+ >
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
+
+ <application
+ android:label="@string/app_name"
+ android:icon="@mipmap/icon"
+ android:largeHeap="true">
+ <service android:name="PhotoTable"
+ android:exported="true"
+ android:label="@string/screensaver_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.DREAM" />
+ </intent-filter>
+ </service>
+ </application>
+</manifest>