ExternalStorageProvider: 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: I0266b557d1c825c03508fe1a8ebdbbec39762633
This commit is contained in:
Ashwini Oruganti
2020-03-10 13:26:25 -07:00
parent 72fcef13fa
commit a335a5c862

View File

@@ -24,7 +24,8 @@
android:permission="android.permission.WRITE_MEDIA_STORAGE" />
</provider>
<receiver android:name=".MountReceiver">
<receiver android:name=".MountReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.os.storage.action.VOLUME_STATE_CHANGED" />
</intent-filter>