Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fe7ac82 authored by Ashwini Oruganti's avatar Ashwini Oruganti
Browse files

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
parent 72fcef13
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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" />