1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-12-23 11:21:29 +00:00

Don't use jack compiler for now

This commit is contained in:
Felix Ableitner 2016-10-20 19:49:35 +09:00
parent 80a269440f
commit af67a7df13

View file

@ -6,12 +6,14 @@ buildscript {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
classpath 'com.github.triplet.gradle:play-publisher:1.1.4'
classpath 'me.tatarka:gradle-retrolambda:3.3.0'
}
}
apply plugin: 'com.android.application'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.triplet.play'
apply plugin: 'me.tatarka.retrolambda'
repositories {
jcenter()
@ -43,10 +45,6 @@ android {
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
testHandleProfiling true
testFunctionalTest true
jackOptions {
enabled true
}
}
signingConfigs {
@ -89,10 +87,6 @@ android {
versionCode Integer.parseInt("0" + defaultConfig.versionCode)
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
task buildNative(type: Exec) {