diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-02-13 12:57:53 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-02-13 12:57:53 -0800 |
commit | 5055ba62e22becc9c8d03898b80cda8ed68cfe80 (patch) | |
tree | bbd9f3365ac6e2592f582509eef36fcc07ce28dc /AndroidManifest.xml | |
parent | dee42a6e53cb1d0c7194b0cb92028cca353d7c5c (diff) | |
download | LegacyCamera-5055ba62e22becc9c8d03898b80cda8ed68cfe80.zip LegacyCamera-5055ba62e22becc9c8d03898b80cda8ed68cfe80.tar.gz LegacyCamera-5055ba62e22becc9c8d03898b80cda8ed68cfe80.tar.bz2 |
auto import from //branches/cupcake/...@131421
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 574d301..ee36428 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -5,6 +5,9 @@ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.SET_WALLPAPER" /> + <!-- Needed by the ZoomRingController to set the bit saying we've already shown the + tutorial toast. --> + <uses-permission android:name="android.permission.WRITE_SETTINGS"/> <application android:icon="@drawable/ic_launcher_camera" android:label="@string/camera_label" android:taskAffinity=""> @@ -101,7 +104,6 @@ <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="vnd.android.cursor.dir/image" /> </intent-filter> - </activity> <activity android:name="CropImage" @@ -194,6 +196,20 @@ <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> + + <receiver android:name="PhotoGadgetProvider" android:label="@string/gadget_title"> + <intent-filter> + <action android:name="android.gadget.action.GADGET_UPDATE" /> + </intent-filter> + <meta-data android:name="android.gadget.provider" android:resource="@xml/gadget_info" /> + </receiver> + + <!-- We configure a gadget by asking to pick a photo, then crop it, and store the config internally --> + <activity android:name="PhotoGadgetConfigure"> + <intent-filter> + <action android:name="android.gadget.action.GADGET_CONFIGURE" /> + </intent-filter> + </activity> </application> </manifest> |