Explicitly export content providers

With SDK 17 the default value for 'exported' changed to "false".
This commit is contained in:
cketti 2013-06-23 03:29:17 +02:00
parent 2789e9fa38
commit 06ae2a071b
1 changed files with 4 additions and 2 deletions

View File

@ -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"