mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
136 lines
3.3 KiB
Groovy
136 lines
3.3 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.3.1'
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://raw.github.com/kolavar/android-support-v4-preferencefragment/master/maven-repository/'
|
|
}
|
|
maven {
|
|
url 'http://jcenter.bintray.com'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'eu.chainfire:libsuperuser:1.0.0.201504231659'
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
compile 'com.android.support:support-v4-preferencefragment:1.0.0@aar'
|
|
androidTestCompile 'com.squareup.okhttp:mockwebserver:2.4.0'
|
|
}
|
|
|
|
preBuild {
|
|
dependsOn 'buildNative'
|
|
}
|
|
|
|
project.archivesBaseName = 'syncthing'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.nutomic.syncthingandroid"
|
|
minSdkVersion 8
|
|
targetSdkVersion 22
|
|
versionCode 72
|
|
versionName "0.6.6"
|
|
testApplicationId 'com.nutomic.syncthingandroid.test'
|
|
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
|
|
testHandleProfiling true
|
|
testFunctionalTest true
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
jniLibs.srcDir file("libs/")
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
if (System.getenv("key_alias")) {
|
|
storeFile = file(System.getenv("key_store"))
|
|
storePassword = System.getenv("key_store_password")
|
|
keyAlias = System.getenv("key_alias")
|
|
keyPassword = System.getenv("key_alias_password")
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
debuggable true
|
|
testCoverageEnabled true
|
|
}
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-android.txt'
|
|
if (System.getenv("key_alias")) {
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
}
|
|
|
|
productFlavors {
|
|
x86 {
|
|
versionCode Integer.parseInt("4" + defaultConfig.versionCode)
|
|
ndk {
|
|
abiFilter "x86"
|
|
}
|
|
}
|
|
armeabi {
|
|
versionCode Integer.parseInt("3" + defaultConfig.versionCode)
|
|
ndk {
|
|
abiFilter "armeabi"
|
|
}
|
|
}
|
|
fat {
|
|
versionCode Integer.parseInt("0" + defaultConfig.versionCode)
|
|
}
|
|
}
|
|
}
|
|
|
|
task buildNative(type: Exec) {
|
|
outputs.upToDateWhen { false }
|
|
executable = './build-syncthing.sh'
|
|
}
|
|
|
|
task copyNative(type: Copy) {
|
|
def lib_dir = "libs/"
|
|
new File(lib_dir).mkdirs()
|
|
def st_dir = "bin/";
|
|
from st_dir + 'syncthing-x86', st_dir + 'syncthing-armeabi';
|
|
into lib_dir
|
|
rename('syncthing-x86', 'x86/libsyncthing.so')
|
|
rename('syncthing-armeabi', 'armeabi/libsyncthing.so')
|
|
}
|
|
buildNative.finalizedBy copyNative
|
|
|
|
task cleanBin(type: Delete) {
|
|
delete 'bin/'
|
|
}
|
|
copyNative.finalizedBy cleanBin
|
|
|
|
task cleanNative(type: Delete) {
|
|
delete 'bin/'
|
|
delete 'build/'
|
|
delete 'libs/'
|
|
delete 'ext/syncthing/bin/'
|
|
delete 'ext/syncthing/pkg/'
|
|
}
|
|
clean.dependsOn cleanNative
|
|
|