Merge "Add an exported flag in manifest"
This commit is contained in:
committed by
Android (Google) Code Review
commit
beb20bb21e
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user