summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2012-04-19 18:00:56 -0700
committerDianne Hackborn <hackbod@google.com>2012-04-19 18:00:56 -0700
commit3330e415f17012e42ba6c1a2e2df5dd6392f3af7 (patch)
tree964abfac37d52493fa67b0f5482c1b5163cce44c /AndroidManifest.xml
parenta73fdd9fcf995bbd087e6a9c1b676851e80956f8 (diff)
downloadandroid_packages_wallpapers_LivePicker-3330e415f17012e42ba6c1a2e2df5dd6392f3af7.tar.gz
android_packages_wallpapers_LivePicker-3330e415f17012e42ba6c1a2e2df5dd6392f3af7.tar.bz2
android_packages_wallpapers_LivePicker-3330e415f17012e42ba6c1a2e2df5dd6392f3af7.zip
Implement issue #4499996: LiveWallpaperPreview activity intent filter
Change-Id: If717ce64157356e470b198fb74ff8bab96d3f4ba
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml11
1 files changed, 9 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b6947dc..709d5a9 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -32,7 +32,6 @@
android:icon="@drawable/ic_launcher_live_wallpaper">
<activity android:name="LiveWallpaperActivity"
- android:icon="@drawable/ic_launcher_live_wallpaper"
android:label="@string/live_wallpaper_picker_label"
android:theme="@style/LivePickerTheme"
android:hardwareAccelerated="true">
@@ -45,8 +44,16 @@
android:resource="@xml/wallpaper_picker_preview" />
</activity>
+ <activity android:name="LiveWallpaperChange"
+ android:label="@string/live_wallpaper_preview_title"
+ android:theme="@style/Preview">
+ <intent-filter>
+ <action android:name="android.service.wallpaper.CHANGE_LIVE_WALLPAPER" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
<activity android:name="LiveWallpaperPreview"
- android:icon="@drawable/ic_launcher_live_wallpaper"
android:label="@string/live_wallpaper_preview_title"
android:theme="@style/Preview" />
</application>