Update android test dependencies

This commit is contained in:
Mikhael Bogdanov
2018-02-07 17:03:31 +01:00
parent b666a2da5f
commit d7e5eb24ee
2 changed files with 6 additions and 7 deletions
@@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -22,7 +22,7 @@ repositories {
android {
compileSdkVersion 19
buildToolsVersion "26.0.2"
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "org.jetbrains.kotlin.android.tests"
@@ -38,12 +38,11 @@ public class SDKDownloader {
private final PathManager pathManager;
//NOTE: PLATFORM_TOOLS 23.1.0 requires only 64 bit build agents
private static final String PLATFORM_TOOLS = "23.0.1";
private static final String SDK_TOOLS = "25.1.1";
public static final String BUILD_TOOLS = "26.0.2";
private static final String PLATFORM_TOOLS = "27.0.1";
private static final String SDK_TOOLS = "25.1.6";
public static final String BUILD_TOOLS = "27.0.3";
private static final int ANDROID_VERSION = 19;
public static final String GRADLE_VERSION = "4.3";
public static final String GRADLE_VERSION = "4.5.1";
public SDKDownloader(PathManager pathManager) {