Add an exported flag in manifest am: 6fdf12a56f am: 4292a37c4b am: a040f43f1f am: 04a6483428 am: ba030bbc9b

Original change: https://android-review.googlesource.com/c/platform/packages/apps/WallpaperPicker/+/1266645

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I48e263eb7f085dfd86ffb16cd23731f1f4682016
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index e51ac15..d6d7759 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,38 +1,39 @@
 <?xml version="1.0" encoding="utf-8"?>
+
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-        package="com.android.wallpaperpicker"
-        android:versionCode="1"
-        android:versionName="1.0"
-        >
+     package="com.android.wallpaperpicker"
+     android:versionCode="1"
+     android:versionName="1.0">
 
-    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="29" />
+    <uses-sdk android:minSdkVersion="16"
+         android:targetSdkVersion="29"/>
 
-    <uses-permission android:name="android.permission.SET_WALLPAPER" />
+    <uses-permission android:name="android.permission.SET_WALLPAPER"/>
 
     <application>
 
-        <activity
-            android:name="com.android.wallpaperpicker.WallpaperPickerActivity"
-            android:theme="@style/WallpaperTheme.Picker"
-            android:label="@string/pick_wallpaper"
-            android:icon="@mipmap/ic_launcher_wallpaper"
-            android:finishOnCloseSystemDialogs="true">
+        <activity android:name="com.android.wallpaperpicker.WallpaperPickerActivity"
+             android:theme="@style/WallpaperTheme.Picker"
+             android:label="@string/pick_wallpaper"
+             android:icon="@mipmap/ic_launcher_wallpaper"
+             android:finishOnCloseSystemDialogs="true"
+             android:exported="true">
             <intent-filter>
-                <action android:name="android.intent.action.SET_WALLPAPER" />
-                <category android:name="android.intent.category.DEFAULT" />
+                <action android:name="android.intent.action.SET_WALLPAPER"/>
+                <category android:name="android.intent.category.DEFAULT"/>
             </intent-filter>
         </activity>
 
-        <activity
-            android:name="com.android.wallpaperpicker.WallpaperCropActivity"
-            android:theme="@style/WallpaperTheme"
-            android:label="@string/crop_wallpaper"
-            android:icon="@mipmap/ic_launcher_wallpaper"
-            android:finishOnCloseSystemDialogs="true">
+        <activity android:name="com.android.wallpaperpicker.WallpaperCropActivity"
+             android:theme="@style/WallpaperTheme"
+             android:label="@string/crop_wallpaper"
+             android:icon="@mipmap/ic_launcher_wallpaper"
+             android:finishOnCloseSystemDialogs="true"
+             android:exported="true">
             <intent-filter>
-                <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER" />
-                <category android:name="android.intent.category.DEFAULT" />
-                <data android:mimeType="image/*" />
+                <action android:name="android.service.wallpaper.CROP_AND_SET_WALLPAPER"/>
+                <category android:name="android.intent.category.DEFAULT"/>
+                <data android:mimeType="image/*"/>
             </intent-filter>
         </activity>
     </application>