aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2020-05-21 00:10:01 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-21 00:10:01 +0000
commite12b56c59fa52dd7272576a154ad0d1dac1ca1c5 (patch)
tree4e8ec9980492c50ddcfb642eb953b9cc07cbb9c7
parent91e435a3dfb4632cbe5265e692ff8faa827a2fce (diff)
parentacaa722264cb864429f58213efb2eed593dd3802 (diff)
downloadtests-e12b56c59fa52dd7272576a154ad0d1dac1ca1c5.tar.gz
Add an exported flag in manifest am: 08ac7b95e1 am: acaa722264
Change-Id: I127ac7a34bfd6b78f084ac8b170ef27251606d2b
-rw-r--r--TestMediaApp/AndroidManifest.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/TestMediaApp/AndroidManifest.xml b/TestMediaApp/AndroidManifest.xml
index 3f27c5b..67f973f 100644
--- a/TestMediaApp/AndroidManifest.xml
+++ b/TestMediaApp/AndroidManifest.xml
@@ -66,6 +66,7 @@
<activity
android:name=".prefs.TmaPrefsActivity"
+ android:exported="true"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
@@ -78,14 +79,16 @@
<meta-data android:name="com.google.android.gms.car.application"
android:resource="@xml/automotive_app_desc"/>
- <activity android:name=".phone.TmaLauncherActivity" >
+ <activity android:name=".phone.TmaLauncherActivity"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
- <receiver android:name="androidx.media.session.MediaButtonReceiver" >
+ <receiver android:name="androidx.media.session.MediaButtonReceiver"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>