Merge "Add an exported flag in manifest"

This commit is contained in:
Ashwini Oruganti
2020-06-03 17:53:57 +00:00
committed by Android (Google) Code Review
2 changed files with 9 additions and 7 deletions

View File

@@ -15,14 +15,15 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.servicestests.pm.parsing.emptyaction">
package="com.android.servicestests.pm.parsing.emptyaction">
<application>
<activity android:name="com.android.servicestests.pm.parsing.test.TestActivity">
<activity android:name="com.android.servicestests.pm.parsing.test.TestActivity"
android:exported="true">
<intent-filter>
<action android:name="" />
<action android:name=""/>
<!-- Non-empty action use to verify filter, since 0 action filters are stripped -->
<action android:name="com.android.servicestests.pm.parsing.test.TEST_ACTION" />
<action android:name="com.android.servicestests.pm.parsing.test.TEST_ACTION"/>
<category android:name="com.android.servicestests.pm.parsing.test.TEST_CATEGORY"/>
</intent-filter>
</activity>

View File

@@ -15,13 +15,14 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.servicestests.pm.parsing.emptycategory">
package="com.android.servicestests.pm.parsing.emptycategory">
<application>
<activity android:name="com.android.servicestests.pm.parsing.test.TestActivity">
<activity android:name="com.android.servicestests.pm.parsing.test.TestActivity"
android:exported="true">
<intent-filter>
<action android:name="com.android.servicestests.pm.parsing.test.TEST_ACTION"/>
<category android:name="" />
<category android:name=""/>
</intent-filter>
</activity>
</application>