summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2020-03-10 15:45:41 -0700
committerAshwini Oruganti <ashfall@google.com>2020-03-10 15:45:41 -0700
commitc7944d11e777476a3fd0040d2b47e5d0ab9162bb (patch)
treecbdfdeac243cab3bb98a413c251c3f40291de29f
parent72fcef13fa57edf60775a98995a60aa92e5f48fd (diff)
WallpaperCropper: Add an exported flag in manifest
With b/150232615, we will need an explicit value set for the exported flag when intent filters are present, as the default behavior is changing for S+. This change adds the value reflecting the previous default to the manifest. Bug: 150232615 Test: TH Change-Id: If46b538043f7c08582b6dd141501373744e5bbe1
-rw-r--r--packages/WallpaperCropper/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/WallpaperCropper/AndroidManifest.xml b/packages/WallpaperCropper/AndroidManifest.xml
index e558d7e257d1..44592e75b601 100644
--- a/packages/WallpaperCropper/AndroidManifest.xml
+++ b/packages/WallpaperCropper/AndroidManifest.xml
@@ -29,7 +29,8 @@
android:name="WallpaperCropActivity"
android:theme="@style/Theme.WallpaperCropper"
android:label="@string/crop_wallpaper"
- android:finishOnCloseSystemDialogs="true">
+ android:finishOnCloseSystemDialogs="true"
+ android:exported="true">
<intent-filter>
<action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
<data android:mimeType="image/*" />