diff options
author | 2023-05-11 14:26:08 +0000 | |
---|---|---|
committer | 2023-05-11 14:26:08 +0000 | |
commit | ff9e750e0f8be7bcdc75e1f0faf4453bcd0dbf8b (patch) | |
tree | 026264b3fb75ed65db2986e129cab28665d8c212 | |
parent | b6db5913d41b01476ef027d7e40f032f4f3c4ed9 (diff) |
Enable IntentResolver by default
Bug: 254512507
Test: Boot and verify that intentresolver comes up without flags.
Change-Id: I05f204bdff99699bfae4c2a4416fb0598e7c2058
-rw-r--r-- | AndroidManifest.xml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 8115b2b2..f625451d 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -44,12 +44,6 @@ android:forceQueryable="true" android:supportsRtl="true"> - <!-- This activity is enabled or disabled by the ChooserSelector - component, based on the flag flipper experiment (1500). It's - initially disabled here only as an extra precaution, since it - should be disabled by ChooserSelector on startup regardless. - TODO: if this graduates from its experiment (and ChooserSelector - is removed), this should be set to default-enabled. --> <activity android:name=".ChooserActivity" android:theme="@style/Theme.DeviceDefault.Chooser" android:finishOnCloseSystemDialogs="true" @@ -58,8 +52,7 @@ android:relinquishTaskIdentity="true" android:configChanges="screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden" android:visibleToInstantApps="true" - android:exported="true" - android:enabled="false"> + android:exported="true"> <!-- This intent filter is assigned a priority greater than 100 so that it will take precedence over the framework ChooserActivity |