plus-messenger/TMessagesProj/build.gradle

96 lines
2.2 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
2013-10-25 11:19:00 -04:00
repositories {
mavenCentral()
}
dependencies {
compile 'com.android.support:support-v4:23.0.+'
2014-08-08 06:17:06 -04:00
compile 'com.google.android.gms:play-services:3.2.+'
//compile 'com.google.android.gms:play-services:7.5.0'
2015-01-02 17:15:07 -05:00
compile 'net.hockeyapp.android:HockeySDK:3.5.+'
2014-07-11 09:54:17 -04:00
compile 'com.googlecode.mp4parser:isoparser:1.0.+'
compile 'org.apache.httpcomponents:httpmime:4.2.1'
//compile 'com.android.support:multidex:1.0.1'
2013-10-25 11:19:00 -04:00
}
android {
compileSdkVersion 22
buildToolsVersion '23.0.1'
packagingOptions {
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE.txt'
}
2015-01-02 17:15:07 -05:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
2013-12-20 14:25:49 -05:00
signingConfigs {
debug {
storeFile file("config/debug.keystore")
2013-12-20 14:25:49 -05:00
}
release {
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
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
2013-12-20 14:25:49 -05:00
}
foss {
debuggable false
2014-11-10 06:05:22 -05:00
jniDebuggable false
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 {
2015-03-02 15:03:14 -05:00
applicationId "org.telegram.plus"
2013-10-25 11:19:00 -04:00
minSdkVersion 8
targetSdkVersion 22
versionCode 630
versionName "3.2.2.1"
//multiDexEnabled true
2013-10-25 11:19:00 -04:00
}
}