Update to 2.5.2.1

This commit is contained in:
rafalense 2015-03-02 17:47:08 +01:00
parent 5ad5d53c92
commit 99683178fa
2 changed files with 13 additions and 7 deletions

View File

@ -52,7 +52,7 @@ android {
release { release {
debuggable false debuggable false
jniDebuggable false jniDebuggable false
signingConfig signingConfigs.release //signingConfig signingConfigs.release
} }
foss { foss {
@ -79,7 +79,13 @@ android {
manifest.srcFile 'config/foss/AndroidManifest.xml' manifest.srcFile 'config/foss/AndroidManifest.xml'
} }
lintOptions {
checkReleaseBuilds false
abortOnError false
}
defaultConfig { defaultConfig {
applicationId "org.telegram.plus"
minSdkVersion 8 minSdkVersion 8
targetSdkVersion 21 targetSdkVersion 21
versionCode 458 versionCode 458

View File

@ -10,10 +10,10 @@ package org.telegram.messenger;
public class BuildVars { public class BuildVars {
public static boolean DEBUG_VERSION = false; public static boolean DEBUG_VERSION = false;
public static int APP_ID = 0; //obtain your own APP_ID at https://core.telegram.org/api/obtaining_api_id public static int APP_ID = 16623; //obtaion your own APP_ID at https://core.telegram.org/api/obtaining_api_id
public static String APP_HASH = ""; //obtain your own APP_HASH at https://core.telegram.org/api/obtaining_api_id public static String APP_HASH = "8c9dbfe58437d1739540f5d53c72ae4b"; //obtain your own APP_HASH at https://core.telegram.org/api/obtaining_api_id
public static String HOCKEY_APP_HASH = "your-hockeyapp-api-key-here"; public static String HOCKEY_APP_HASH = "21098765432109876543210987654321";//"a5b5c4f551dadedc9918d9766a22ca7c";
public static String GCM_SENDER_ID = "760348033672"; public static String GCM_SENDER_ID = "326898382893";
public static String SEND_LOGS_EMAIL = "email@gmail.com"; public static String SEND_LOGS_EMAIL = "androiddeveloperplus@gmail.com";
public static String BING_SEARCH_KEY = ""; //obtain your own KEY at https://www.bing.com/dev/en-us/dev-center public static String BING_SEARCH_KEY = "dKYt6BjhkmFnJABZI/nWs++mx7owYEKZLcdA3DTOO1s"; //obtain your own KEY at https://www.bing.com/dev/en-us/dev-center
} }