2013-10-25 15:19:00 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-11-06 21:34:47 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:0.14.0'
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-02 22:39:05 +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 {
|
2014-08-22 14:24:33 +00:00
|
|
|
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 {
|
2014-10-17 23:06:51 +00:00
|
|
|
compileSdkVersion 21
|
2014-11-07 10:23:17 +00:00
|
|
|
buildToolsVersion '21.1.1'
|
2014-03-22 22:31:55 +00:00
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
signingConfigs {
|
|
|
|
debug {
|
2014-03-22 22:31:55 +00:00
|
|
|
storeFile file("config/debug.keystore")
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
2014-03-22 22:31:55 +00:00
|
|
|
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
|
2014-03-22 22:31:55 +00:00
|
|
|
jniDebugBuild false
|
2013-12-20 19:25:49 +00:00
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
|
|
|
debuggable false
|
|
|
|
jniDebugBuild false
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2014-03-22 22:31:55 +00: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 19:25:49 +00:00
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 8
|
2014-11-06 21:34:47 +00:00
|
|
|
targetSdkVersion 21
|
2014-10-30 21:27:41 +00:00
|
|
|
versionCode 379
|
2014-10-28 17:07:44 +00:00
|
|
|
versionName "1.9.7"
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|