summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-11 12:11:58 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-11 12:11:58 -0700
commite3f4516c2154539cb5778ef061abf8a0ccf90a5e (patch)
tree79159ed7ec3dc97d6dc9f0499d5f95d46d6f195c /AndroidManifest.xml
parent9a379bd668227d3dcea30312025f304fd248f6e3 (diff)
downloadLegacyCamera-e3f4516c2154539cb5778ef061abf8a0ccf90a5e.zip
LegacyCamera-e3f4516c2154539cb5778ef061abf8a0ccf90a5e.tar.gz
LegacyCamera-e3f4516c2154539cb5778ef061abf8a0ccf90a5e.tar.bz2
auto import from //branches/cupcake/...@137873
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 66ef99e..ea8f12e 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -197,26 +197,26 @@
</intent-filter>
</activity>
- <receiver android:name="PhotoGadgetProvider" android:label="@string/gadget_title">
+ <receiver android:name="PhotoAppWidgetProvider" android:label="@string/gadget_title">
<intent-filter>
- <action android:name="android.gadget.action.GADGET_UPDATE" />
+ <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
- <meta-data android:name="android.gadget.provider" android:resource="@xml/gadget_info" />
+ <meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info" />
</receiver>
- <!-- We configure a gadget by asking to pick a photo, then crop it, and store the config internally -->
- <activity android:name="PhotoGadgetConfigure">
+ <!-- We configure a widget by asking to pick a photo, then crop it, and store the config internally -->
+ <activity android:name="PhotoAppWidgetConfigure">
<intent-filter>
- <action android:name="android.gadget.action.GADGET_CONFIGURE" />
+ <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<!-- We also allow direct binding where the caller provides a bitmap and
- gadgetId to bind. We require the permission because this changes our
+ appWidgetId to bind. We require the permission because this changes our
internal database without user confirmation. -->
- <activity android:name="PhotoGadgetBind" android:exported="true"
+ <activity android:name="PhotoAppWidgetBind" android:exported="true"
android:theme="@android:style/Theme.NoDisplay"
- android:permission="android.permission.BIND_GADGET" />
+ android:permission="android.permission.BIND_APPWIDGET" />
</application>
</manifest>