summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
author Shubhi <shubhisaxena@google.com> 2022-11-15 16:20:05 +0000
committer Shubhi <shubhisaxena@google.com> 2022-11-28 19:35:54 +0000
commit1b6324f67439e4d775a085108e898005c6aa4428 (patch)
tree0bcc1fa712c0e91b02ef528645a9225f4bf4097c /AndroidManifest.xml
parentcf0729f3c23fbf21447190fb7d3155f2adc068ac (diff)
Add intent filter for Photo Picker Settings activity
This change will allow other apps to start Settings activity with implicit intent. Bug: 195009187 Test: Launch settings from Picker on test device Change-Id: I855d9647f2fce8d70f9ed0c73be9d42759788bdd
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f44a9b98c..a56475514 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -199,6 +199,11 @@
android:exported="true"
android:enabled="false" >
+ <intent-filter android:priority="100" >
+ <action android:name="android.provider.action.PICK_IMAGES_SETTINGS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+
<!-- ============== BEGIN SYSTEM SETTINGS MENU ITEM SECTION ============== -->
<intent-filter>
<action android:name="com.android.settings.action.IA_SETTINGS"/>