mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Explicitly export content providers
With SDK 17 the default value for 'exported' changed to "false".
This commit is contained in:
parent
2789e9fa38
commit
06ae2a071b
@ -6,8 +6,8 @@
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="8"
|
||||
android:targetSdkVersion="17"
|
||||
/>
|
||||
android:targetSdkVersion="17"
|
||||
/>
|
||||
<supports-screens
|
||||
android:largeScreens="true"
|
||||
android:normalScreens="true"
|
||||
@ -395,6 +395,7 @@ otherwise it would make K-9 start at the wrong time
|
||||
android:multiprocess="true"
|
||||
android:grantUriPermissions="true"
|
||||
android:readPermission="com.fsck.k9.permission.READ_ATTACHMENT"
|
||||
android:exported="true"
|
||||
/>
|
||||
<provider
|
||||
android:name=".provider.MessageProvider"
|
||||
@ -403,6 +404,7 @@ otherwise it would make K-9 start at the wrong time
|
||||
android:grantUriPermissions="true"
|
||||
android:readPermission="com.fsck.k9.permission.READ_MESSAGES"
|
||||
android:writePermission="com.fsck.k9.permission.DELETE_MESSAGES"
|
||||
android:exported="true"
|
||||
/>
|
||||
<provider
|
||||
android:name=".provider.EmailProvider"
|
||||
|
Loading…
Reference in New Issue
Block a user