I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 8b71e4fc authored by str4d's avatar str4d
Browse files

Fixed CacheProvider authorities clash

parent ed61f041
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@
</service>
<provider
android:name=".provider.CacheProvider"
android:authorities="net.i2p.android.router" />
android:authorities="net.i2p.android" />
<activity
android:name=".MainActivity"
......
......@@ -45,7 +45,7 @@ public class CacheProvider extends ContentProvider {
//private static final String NONCE = Integer.toString(Math.abs((new java.util.Random()).nextInt()));
private static final String NONCE = "0";
private static final String SCHEME = "content";
public static final String AUTHORITY = "net.i2p.android.router";
public static final String AUTHORITY = "net.i2p.android";
/** includes the nonce */
public static final Uri CONTENT_URI = Uri.parse(SCHEME + "://" + AUTHORITY + '/' + NONCE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment