Last active
August 29, 2015 14:15
-
-
Save mokhtarabadi/17058420e83f0d04f255 to your computer and use it in GitHub Desktop.
remove signing in telegram android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.14.0' | |
} | |
} | |
apply plugin: 'com.android.application' | |
repositories { | |
mavenCentral() | |
} | |
tasks.withType(JavaCompile) { | |
options.encoding = "UTF-8" | |
} | |
dependencies { | |
compile 'com.android.support:support-v4:21.0.+' | |
compile 'com.google.android.gms:play-services:3.2.+' | |
compile 'net.hockeyapp.android:HockeySDK:3.0.2' | |
compile 'com.googlecode.mp4parser:isoparser:1.0.+' | |
} | |
android { | |
compileSdkVersion 21 | |
buildToolsVersion '21.1.1' | |
buildTypes { | |
debug { | |
debuggable true | |
jniDebuggable true | |
} | |
release { | |
debuggable false | |
jniDebuggable false | |
} | |
foss { | |
debuggable false | |
jniDebuggable false | |
} | |
} | |
sourceSets.main { | |
jniLibs.srcDir 'libs' | |
jni.srcDirs = [] //disable automatic ndk-build call | |
} | |
sourceSets.debug { | |
manifest.srcFile 'config/debug/AndroidManifest.xml' | |
} | |
sourceSets.release { | |
manifest.srcFile 'config/release/AndroidManifest.xml' | |
} | |
sourceSets.foss { | |
manifest.srcFile 'config/foss/AndroidManifest.xml' | |
} | |
defaultConfig { | |
minSdkVersion 8 | |
targetSdkVersion 21 | |
versionCode 403 | |
versionName "2.1.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment