diff options
author | Dianne Hackborn <hackbod@google.com> | 2009-08-08 20:56:11 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2009-08-08 21:01:32 -0700 |
commit | e25e4e4c57e68d3c3b33d25e06430faca90abea7 (patch) | |
tree | c2b3ab5897acfb243c23557954e60cdef8395249 /AndroidManifest.xml | |
parent | ede25bc845e18e39037c08224bdeea21ca5b3ee8 (diff) | |
download | packages_apps_Settings-e25e4e4c57e68d3c3b33d25e06430faca90abea7.zip packages_apps_Settings-e25e4e4c57e68d3c3b33d25e06430faca90abea7.tar.gz packages_apps_Settings-e25e4e4c57e68d3c3b33d25e06430faca90abea7.tar.bz2 |
Add new activity for picking live wallpapers.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 2565914..420c09a 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -559,6 +559,17 @@ android:permission="android.permission.BIND_APPWIDGET" android:theme="@android:style/Theme.NoDisplay" android:exported="true" /> + <!-- Standard picker for live wallpapers --> + <activity android:name="LiveWallpaperPickActivity" + android:label="@string/live_wallpaper_picker_title" + android:theme="@*android:style/Theme.Dialog.Alert"> + <intent-filter> + <action android:name="android.service.wallpaper.LIVE_WALLPAPER_CHOOSER" /> + <action android:name="android.intent.action.SET_WALLPAPER" /> + <category android:name="android.intent.category.DEFAULT" /> + </intent-filter> + </activity> + <activity android:name="UsageStats" android:label="@string/usage_stats_label"> <intent-filter> <action android:name="android.intent.action.MAIN" /> |