Nagram/TMessagesProj/build.gradle

87 lines
1.8 KiB
Groovy
Raw Normal View History

2013-10-25 15:19:00 +00:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2014-10-07 20:14:27 +00:00
classpath 'com.android.tools.build:gradle:0.13.+'
2013-10-25 15:19:00 +00:00
}
}
apply plugin: 'com.android.application'
2013-10-25 15:19:00 +00:00
repositories {
mavenCentral()
}
2013-12-20 19:25:49 +00:00
tasks.withType(JavaCompile) {
2013-10-25 15:19:00 +00:00
options.encoding = "UTF-8"
}
dependencies {
compile 'com.android.support:support-v4:20.0.+'
2014-08-08 10:17:06 +00:00
compile 'com.google.android.gms:play-services:3.2.+'
2014-10-11 11:30:32 +00:00
compile 'net.hockeyapp.android:HockeySDK:3.0.2'
2014-07-11 13:54:17 +00:00
compile 'com.googlecode.mp4parser:isoparser:1.0.+'
2013-10-25 15:19:00 +00:00
}
android {
2013-11-04 12:31:01 +00:00
compileSdkVersion 19
2014-10-07 20:14:27 +00:00
buildToolsVersion '20.0.0'
2013-12-20 19:25:49 +00:00
signingConfigs {
debug {
storeFile file("config/debug.keystore")
2013-12-20 19:25:49 +00:00
}
release {
storeFile file("config/release.keystore")
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
2013-12-20 19:25:49 +00:00
}
}
buildTypes {
debug {
debuggable true
jniDebugBuild false
2013-12-20 19:25:49 +00:00
signingConfig signingConfigs.debug
}
release {
debuggable false
jniDebugBuild false
signingConfig signingConfigs.release
}
foss {
debuggable false
jniDebugBuild false
signingConfig signingConfigs.release
}
}
sourceSets.main {
jniLibs.srcDir 'libs'
jni.srcDirs = [] //disable automatic ndk-build call
}
sourceSets {
debug {
manifest.srcFile 'config/debug/AndroidManifest.xml'
}
release {
manifest.srcFile 'config/release/AndroidManifest.xml'
}
foss {
manifest.srcFile 'config/foss/AndroidManifest.xml'
}
2013-12-20 19:25:49 +00:00
}
2013-10-25 15:19:00 +00:00
defaultConfig {
minSdkVersion 8
2013-11-04 12:31:01 +00:00
targetSdkVersion 19
versionCode 359
2014-10-10 17:16:39 +00:00
versionName "1.9.5"
2013-10-25 15:19:00 +00:00
}
}