minSdk of 9 means that providers are exported by default

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2016-01-15 22:09:58 -08:00
parent df27fa47ed
commit 1e2a45d440
1 changed files with 3 additions and 1 deletions

View File

@ -441,7 +441,7 @@
<receiver android:name=".notifications.WearReplyReceiver"
android:enabled="true"
android:exported="true">
android:exported="false">
<intent-filter>
<action android:name="org.thoughtcrime.securesms.notifications.WEAR_REPLY"/>
</intent-filter>
@ -449,10 +449,12 @@
<provider android:name=".providers.PartProvider"
android:grantUriPermissions="true"
android:exported="false"
android:authorities="org.thoughtcrime.provider.securesms" />
<provider android:name=".providers.MmsBodyProvider"
android:grantUriPermissions="true"
android:exported="false"
android:authorities="org.thoughtcrime.provider.securesms.mms" />
<receiver android:name=".service.RegistrationNotifier"