summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2012-10-25 15:53:42 -0700
committerRuben Brunk <rubenbrunk@google.com>2012-10-25 16:24:49 -0700
commitebe494f81e685a1d69c1221f019320ed6ee34759 (patch)
tree8556f2ebeed5e682495731bdd42e3fb328f5290c /AndroidManifest.xml
parent55614a48ca5ce4304c3bef3ca4372f5548dbfd40 (diff)
downloadandroid_packages_apps_Snap-ebe494f81e685a1d69c1221f019320ed6ee34759.tar.gz
android_packages_apps_Snap-ebe494f81e685a1d69c1221f019320ed6ee34759.tar.bz2
android_packages_apps_Snap-ebe494f81e685a1d69c1221f019320ed6ee34759.zip
Fixed crop intent.
Bug: 7415140 Bug: 7403813 Change-Id: I545162544f845d210d21185cddaca09b219fb091
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2d8ade784..b147aa1c1 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -243,7 +243,12 @@
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter android:label="@string/crop_label">
- <action android:name="com.android.camera.action.CROP" />
+ <action android:name="com.android.camera.action.EDITOR_CROP" />
+ <data android:scheme="http" />
+ <data android:scheme="https" />
+ <data android:scheme="content" />
+ <data android:scheme="file" />
+ <data android:scheme="" />
<data android:mimeType="image/*" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.ALTERNATIVE" />