fdroiddata/metadata/org.mariotaku.twidere/constants1.patch
2012-12-22 16:18:36 +00:00

23 lines
1.4 KiB
Diff

diff --git a/src/org/mariotaku/twidere/Constants.java b/src/org/mariotaku/twidere/Constants.java
index 8110a86..caa1df5 100644
--- a/src/org/mariotaku/twidere/Constants.java
+++ b/src/org/mariotaku/twidere/Constants.java
@@ -51,12 +51,11 @@ public interface Constants extends TwitterConstants {
public static final String DATABASES_NAME = "twidere.sqlite";
public static final int DATABASES_VERSION = 34;
- // The following 4 constants are not included in source code, you'd better
- // use your own.
- public static final String TWITTER_CONSUMER_KEY = PrivateConstants.TWITTER_CONSUMER_KEY;
- public static final String TWITTER_CONSUMER_SECRET = PrivateConstants.TWITTER_CONSUMER_SECRET;
- public static final String GOOGLE_MAPS_API_KEY_RELEASE = PrivateConstants.GOOGLE_MAPS_API_KEY_RELEASE;
- public static final String GOOGLE_MAPS_API_KEY_DEBUG = PrivateConstants.GOOGLE_MAPS_API_KEY_DEBUG;
+ // these keys are mariotaku's; please get your own
+ public static final String TWITTER_CONSUMER_KEY = "uAFVpMhBntJutfVj6abfA";
+ public static final String TWITTER_CONSUMER_SECRET = "JARXkJTfxo0F8MyctYy9bUmrLISjo8vXAHsZHYuk2E";
+ public static final String GOOGLE_MAPS_API_KEY_RELEASE = "0kjPwJOe_zwYjzGc9uYak7vhm_Sf3eob-2L3Xzw";
+ public static final String GOOGLE_MAPS_API_KEY_DEBUG = "1LhWN5eWaqRrP0ZgO3h7vevsAwtJJs80C-G9o7RA";
public static final String GOOGLE_MAPS_API_KEY = DEBUG ? GOOGLE_MAPS_API_KEY_DEBUG : GOOGLE_MAPS_API_KEY_RELEASE;