2013-10-25 19:19:00 +04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-10-08 00:14:27 +04:00
|
|
|
classpath 'com.android.tools.build:gradle:0.13.+'
|
2013-10-25 19:19:00 +04:00
|
|
|
}
|
|
|
|
}
|
2014-07-03 02:39:05 +04:00
|
|
|
apply plugin: 'com.android.application'
|
2013-10-25 19:19:00 +04:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2013-12-20 23:25:49 +04:00
|
|
|
tasks.withType(JavaCompile) {
|
2013-10-25 19:19:00 +04:00
|
|
|
options.encoding = "UTF-8"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-08-22 18:24:33 +04:00
|
|
|
compile 'com.android.support:support-v4:20.0.+'
|
2014-08-08 14:17:06 +04:00
|
|
|
compile 'com.google.android.gms:play-services:3.2.+'
|
2014-10-11 15:30:32 +04:00
|
|
|
compile 'net.hockeyapp.android:HockeySDK:3.0.2'
|
2014-07-11 17:54:17 +04:00
|
|
|
compile 'com.googlecode.mp4parser:isoparser:1.0.+'
|
2013-10-25 19:19:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2014-10-18 03:06:51 +04:00
|
|
|
compileSdkVersion 21
|
2014-10-23 19:30:35 +04:00
|
|
|
buildToolsVersion '21.0.2'
|
2014-03-23 02:31:55 +04:00
|
|
|
|
2013-12-20 23:25:49 +04:00
|
|
|
signingConfigs {
|
|
|
|
debug {
|
2014-03-23 02:31:55 +04:00
|
|
|
storeFile file("config/debug.keystore")
|
2013-12-20 23:25:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
2014-03-23 02:31:55 +04:00
|
|
|
storeFile file("config/release.keystore")
|
|
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
|
|
keyPassword RELEASE_KEY_PASSWORD
|
2013-12-20 23:25:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
debuggable true
|
2014-03-23 02:31:55 +04:00
|
|
|
jniDebugBuild false
|
2013-12-20 23:25:49 +04:00
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
|
|
|
debuggable false
|
|
|
|
jniDebugBuild false
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2014-03-23 02:31:55 +04:00
|
|
|
|
|
|
|
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 23:25:49 +04:00
|
|
|
}
|
2013-10-25 19:19:00 +04:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 8
|
2013-11-04 16:31:01 +04:00
|
|
|
targetSdkVersion 19
|
2014-10-23 19:30:35 +04:00
|
|
|
versionCode 374
|
2014-10-23 11:55:32 +04:00
|
|
|
versionName "1.9.6"
|
2013-10-25 19:19:00 +04:00
|
|
|
}
|
|
|
|
}
|