From af67a7df136c7d9a9d468d9810db67ebe0b05aff Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Thu, 20 Oct 2016 19:49:35 +0900 Subject: [PATCH] Don't use jack compiler for now --- build.gradle | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index 301f6df4..ee345a00 100644 --- a/build.gradle +++ b/build.gradle @@ -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) {