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
android:name=".provider.EmailProvider"
android:authorities="org.k9mail.provider.email"
android:authorities="com.fsck.k9.provider.email"
android:exported="false"
/>

View File

@ -43,7 +43,7 @@ import android.net.Uri;
public class EmailProvider extends ContentProvider {
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);