diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index ee36428..66ef99e 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -210,6 +210,14 @@ <action android:name="android.gadget.action.GADGET_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 + internal database without user confirmation. --> + <activity android:name="PhotoGadgetBind" android:exported="true" + android:theme="@android:style/Theme.NoDisplay" + android:permission="android.permission.BIND_GADGET" /> + </application> </manifest> |