summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-12-29 00:19:08 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-12-29 00:19:08 +0000
commit244e5bb72ada2db2f5cd0d6e5a612db9ac83479e (patch)
treec53dbf32dbd4330263965e07824c574e441a3874
parent7ab3098310c1f656cae4792c208c7857ed6ec43a (diff)
parent82a619320e0523ebb20301c6bf853564449d78a3 (diff)
downloadnative-244e5bb72ada2db2f5cd0d6e5a612db9ac83479e.tar.gz
Merge "opengl: tests: Add explict android:exported flag to manifests on GLDual.apk" into android14-tests-dev am: 82a619320e
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2863874 Change-Id: Ifc55a24f9e61dceb0f8b5bec08d273a0a977a2d4 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--opengl/tests/gldual/AndroidManifest.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/opengl/tests/gldual/AndroidManifest.xml b/opengl/tests/gldual/AndroidManifest.xml
index a36f4f715e..d6335b0698 100644
--- a/opengl/tests/gldual/AndroidManifest.xml
+++ b/opengl/tests/gldual/AndroidManifest.xml
@@ -20,8 +20,9 @@
android:label="@string/gldual_activity">
<activity android:name="GLDualActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
- android:launchMode="singleTask"
- android:configChanges="orientation|keyboardHidden">
+ android:launchMode="singleTask"
+ android:configChanges="orientation|keyboardHidden"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />