1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-26 14:21:16 +00:00
syncthing-android/build.gradle

55 lines
943 B
Groovy
Raw Normal View History

2014-05-12 16:54:26 +00:00
buildscript {
2014-05-14 15:08:19 +00:00
repositories {
mavenCentral()
}
2014-05-12 16:54:26 +00:00
2014-05-14 15:08:19 +00:00
dependencies {
classpath 'com.android.tools.build:gradle:0.9.0+'
classpath 'com.alexvasilkov:android_sign:0.2'
}
2014-05-12 16:54:26 +00:00
}
apply plugin: 'android'
apply plugin: 'android_sign'
repositories {
2014-05-14 15:08:19 +00:00
mavenCentral()
}
dependencies {
2014-05-14 21:02:33 +00:00
compile 'com.android.support:appcompat-v7:19.1.+'
}
2014-05-12 16:54:26 +00:00
android {
2014-05-14 15:08:19 +00:00
compileSdkVersion 19
buildToolsVersion "19.0.3"
sourceSets {
2014-05-12 16:54:26 +00:00
main {
jniLibs.srcDir file("libs/")
jniLibs.srcDir file("obj/")
}
}
2014-05-14 15:08:19 +00:00
signingConfigs {
release {
// Android Studio does not pass environment variables.
// This means you have to use the command line for release builds.
def ks = System.getenv("KEYSTORE")
def ka = System.getenv("KEY_ALIAS")
if (ks != null && ka != null) {
storeFile file(ks)
keyAlias ka
}
}
}
2014-05-12 16:54:26 +00:00
2014-05-14 15:08:19 +00:00
buildTypes {
debug {
packageNameSuffix ".debug"
debuggable true
}
release {
signingConfig signingConfigs.release
}
}
2014-05-12 16:54:26 +00:00
}