summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-09-06 16:46:57 -0400
committerChris Wren <cwren@android.com>2012-09-07 17:41:42 -0400
commitd85f53c69dead1f1f6c0290b8104422143bc5166 (patch)
tree2a8d5cec293a0b55937a0a8296ed995f2af39bb8 /AndroidManifest.xml
parent83fee9012b6d5c5940de5b96fe8d98653ba14c0d (diff)
downloadandroid_packages_screensavers_PhotoTable-d85f53c69dead1f1f6c0290b8104422143bc5166.tar.gz
android_packages_screensavers_PhotoTable-d85f53c69dead1f1f6c0290b8104422143bc5166.tar.bz2
android_packages_screensavers_PhotoTable-d85f53c69dead1f1f6c0290b8104422143bc5166.zip
Add ability to select the albums to display.
Change-Id: I80ff33c4c880c445b79735d6483bc9337a89e392
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml25
1 files changed, 23 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 4511728..2e6c39c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -10,26 +10,47 @@
android:icon="@mipmap/icon"
android:largeHeap="true">
android:hardwareAccelerated="true"
- <service android:name="PhotoTable"
+ <service android:name="PhotoTableDream"
android:exported="true"
android:icon="@mipmap/icon"
android:label="@string/table_screensaver_name">
+ <meta-data
+ android:name="android.service.dreams.config_activity"
+ android:value="com.android.dreams.phototable/.PhotoTableDreamSettings"/>
<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>
+ <activity android:name="PhotoTableDreamSettings"
+ android:exported="true"
+ android:label="@string/table_screensaver_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
<service android:name="FlipperDream"
android:exported="true"
android:icon="@mipmap/flip"
android:label="@string/flipper_screensaver_name">
- android:icon="@mipmap/flip"
+ <meta-data
+ android:name="android.service.dreams.config_activity"
+ android:value="com.android.dreams.phototable/.FlipperDreamSettings"/>
<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>
+ <activity android:name="FlipperDreamSettings"
+ android:exported="true"
+ android:label="@string/flipper_screensaver_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
</application>
</manifest>