2014-07-02 18:39:05 -04:00
|
|
|
apply plugin: 'com.android.application'
|
2013-10-25 11:19:00 -04:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-10-31 07:17:00 -04:00
|
|
|
compile 'com.android.support:support-v4:23.1.+'
|
2016-02-25 04:36:39 -05:00
|
|
|
compile "com.google.android.gms:play-services-gcm:8.4.0"
|
|
|
|
compile "com.google.android.gms:play-services-maps:8.4.0"
|
2015-11-27 16:10:12 -05:00
|
|
|
compile 'net.hockeyapp.android:HockeySDK:3.6.+'
|
2014-07-11 09:54:17 -04:00
|
|
|
compile 'com.googlecode.mp4parser:isoparser:1.0.+'
|
2013-10-25 11:19:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2015-10-31 07:17:00 -04:00
|
|
|
compileSdkVersion 23
|
2015-11-27 16:10:12 -05:00
|
|
|
buildToolsVersion '23.0.2'
|
2015-09-30 09:47:26 -04:00
|
|
|
|
2015-10-31 07:17:00 -04:00
|
|
|
useLibrary 'org.apache.http.legacy'
|
2016-02-25 04:36:39 -05:00
|
|
|
//defaultConfig.applicationId = "org.telegram.messenger"
|
|
|
|
defaultConfig.applicationId = "org.telegram.plus"
|
2015-10-31 07:17:00 -04:00
|
|
|
|
2015-01-02 17:15:07 -05:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2014-03-22 18:31:55 -04:00
|
|
|
|
2013-12-20 14:25:49 -05:00
|
|
|
signingConfigs {
|
|
|
|
debug {
|
2014-03-22 18:31:55 -04:00
|
|
|
storeFile file("config/debug.keystore")
|
2016-02-25 04:36:39 -05:00
|
|
|
//storeFile file("config/release.keystore")
|
|
|
|
//storePassword RELEASE_STORE_PASSWORD
|
|
|
|
//keyAlias RELEASE_KEY_ALIAS
|
|
|
|
//keyPassword RELEASE_KEY_PASSWORD
|
2013-12-20 14:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
2014-03-22 18:31:55 -04:00
|
|
|
storeFile file("config/release.keystore")
|
|
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
|
|
keyPassword RELEASE_KEY_PASSWORD
|
2013-12-20 14:25:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
debuggable true
|
2014-11-10 06:05:22 -05:00
|
|
|
jniDebuggable true
|
2013-12-20 14:25:49 -05:00
|
|
|
signingConfig signingConfigs.debug
|
2015-03-27 13:56:34 -04:00
|
|
|
applicationIdSuffix ".beta"
|
2013-12-20 14:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
|
|
|
debuggable false
|
2014-11-10 06:05:22 -05:00
|
|
|
jniDebuggable false
|
2015-03-02 15:03:14 -05:00
|
|
|
//signingConfig signingConfigs.release
|
2016-02-25 04:36:39 -05:00
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2013-12-20 14:25:49 -05:00
|
|
|
}
|
2014-03-22 18:31:55 -04:00
|
|
|
|
|
|
|
foss {
|
|
|
|
debuggable false
|
2014-11-10 06:05:22 -05:00
|
|
|
jniDebuggable false
|
2014-03-22 18:31:55 -04:00
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.main {
|
|
|
|
jniLibs.srcDir 'libs'
|
|
|
|
jni.srcDirs = [] //disable automatic ndk-build call
|
|
|
|
}
|
|
|
|
|
2014-11-21 14:36:21 -05:00
|
|
|
sourceSets.debug {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.release {
|
|
|
|
manifest.srcFile 'config/release/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.foss {
|
|
|
|
manifest.srcFile 'config/foss/AndroidManifest.xml'
|
2013-12-20 14:25:49 -05:00
|
|
|
}
|
2013-10-25 11:19:00 -04:00
|
|
|
|
2015-03-02 15:03:14 -05:00
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
|
2013-10-25 11:19:00 -04:00
|
|
|
defaultConfig {
|
2016-02-25 04:36:39 -05:00
|
|
|
minSdkVersion 9
|
2015-10-31 07:17:00 -04:00
|
|
|
targetSdkVersion 23
|
2016-02-25 04:36:39 -05:00
|
|
|
versionCode 736
|
|
|
|
versionName "3.4.2.5"
|
2013-10-25 11:19:00 -04:00
|
|
|
}
|
|
|
|
}
|