1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-12 06:08:25 -05:00

Change authority of the new content provider to unbreak build scripts

This commit is contained in:
cketti 2012-11-22 20:51:41 +01:00
parent e2d347f0a3
commit f0118ecb85
2 changed files with 2 additions and 2 deletions

View File

@ -398,7 +398,7 @@ otherwise it would make K-9 start at the wrong time
/> />
<provider <provider
android:name=".provider.EmailProvider" android:name=".provider.EmailProvider"
android:authorities="org.k9mail.provider.email" android:authorities="com.fsck.k9.provider.email"
android:exported="false" android:exported="false"
/> />

View File

@ -43,7 +43,7 @@ import android.net.Uri;
public class EmailProvider extends ContentProvider { public class EmailProvider extends ContentProvider {
private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
public static final String AUTHORITY = "org.k9mail.provider.email"; public static final String AUTHORITY = "com.fsck.k9.provider.email";
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY); public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);