WAPPushManager: 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: I2ad8dd831d6a2a9cacd5ca3671358b961c781a7b
This commit is contained in:
Ashwini Oruganti
2020-03-10 15:48:59 -07:00
parent 72fcef13fa
commit 7fe7ac8275

View File

@@ -27,14 +27,16 @@
<application android:icon="@drawable/icon" android:label="wappush test">
<uses-library android:name="android.test.runner" />
<activity android:name=".ClientTest"
android:label="wappush test">
android:label="wappush test"
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=".DrmReceiver" android:enabled="true">
<receiver android:name=".DrmReceiver" android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED" />
<data android:mimeType="application/vnd.oma.drm.rights+xml" />