diff options
author | Ashwini Oruganti <ashfall@google.com> | 2020-03-10 16:20:04 -0700 |
---|---|---|
committer | Ashwini Oruganti <ashfall@google.com> | 2020-03-10 16:20:04 -0700 |
commit | cace20f8e690acf5eb963bcb5c7fc7e2b4c62895 (patch) | |
tree | 32a2e38ec7f47fc140ee6c69c0ea4a25d729863f /test-runner | |
parent | 72fcef13fa57edf60775a98995a60aa92e5f48fd (diff) |
test-runner: 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: I041de56cfab67e2851751be65d26cfe80cdb9cb2
Diffstat (limited to 'test-runner')
-rw-r--r-- | test-runner/tests/AndroidManifest.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test-runner/tests/AndroidManifest.xml b/test-runner/tests/AndroidManifest.xml index 4f323928994c..f9d71b4bf376 100644 --- a/test-runner/tests/AndroidManifest.xml +++ b/test-runner/tests/AndroidManifest.xml @@ -20,7 +20,8 @@ <application> <uses-library android:name="android.test.runner" /> <activity android:name="android.test.StubTestBrowserActivity" - android:label="Stubbed Test Browser"> + android:label="Stubbed Test Browser" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.FOR_TESTS_ONLY"/> @@ -28,7 +29,8 @@ </activity> <activity android:name="android.test.TestBrowserTests" - android:label="Test Browser Tests"> + android:label="Test Browser Tests" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.UNIT_TEST"/> |