From bd67679279bf5ff025d666d640a7cc865d6086c7 Mon Sep 17 00:00:00 2001 From: Nazar Suhovich Date: Sun, 11 Jun 2017 20:11:12 +0300 Subject: [PATCH] Change gradle version to stable. --- app/build.gradle | 9 ++++----- build.gradle | 2 +- colorslider/build.gradle | 9 +++------ 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 1a0dcd6..93f7aab 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,12 +20,11 @@ android { } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { + compile fileTree(dir: 'libs', include: ['*.jar']) + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - implementation 'com.android.support:appcompat-v7:25.4.0' - testImplementation 'junit:junit:4.12' - implementation 'com.android.support.constraint:constraint-layout:1.0.2' + compile 'com.android.support:appcompat-v7:25.4.0' + testCompile 'junit:junit:4.12' compile project(':colorslider') } diff --git a/build.gradle b/build.gradle index 82ff274..974a22f 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.0-alpha3' + classpath 'com.android.tools.build:gradle:2.3.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/colorslider/build.gradle b/colorslider/build.gradle index b424b4c..72c248e 100644 --- a/colorslider/build.gradle +++ b/colorslider/build.gradle @@ -12,8 +12,6 @@ android { versionCode 1 versionName "1.0" - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" - } buildTypes { release { @@ -24,11 +22,10 @@ android { } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - implementation 'com.android.support:appcompat-v7:25.4.0' - testImplementation 'junit:junit:4.12' + compile 'com.android.support:appcompat-v7:25.4.0' + testCompile 'junit:junit:4.12' }