From 659ddfcd421cc9101a8972a7797d90519e1e0673 Mon Sep 17 00:00:00 2001 From: Jan Engelmohr Date: Tue, 27 Feb 2018 17:24:00 +0100 Subject: [PATCH] build against API 27 --- app/build.gradle | 7 +++---- audio-recorder/build.gradle | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index d4d4402..c1cb92b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,12 +1,11 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 25 - buildToolsVersion "25.0.3" + compileSdkVersion 27 defaultConfig { applicationId "br.com.safety.audio_recorder_button" minSdkVersion 15 - targetSdkVersion 25 + targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -24,7 +23,7 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:appcompat-v7:27.0.2' compile 'com.android.support.constraint:constraint-layout:1.0.2' testCompile 'junit:junit:4.12' compile project(path: ':audio-recorder') diff --git a/audio-recorder/build.gradle b/audio-recorder/build.gradle index 9b9b161..da85b88 100644 --- a/audio-recorder/build.gradle +++ b/audio-recorder/build.gradle @@ -1,12 +1,11 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 25 - buildToolsVersion "25.0.3" + compileSdkVersion 27 defaultConfig { minSdkVersion 15 - targetSdkVersion 25 + targetSdkVersion 27 versionCode 1 versionName "1.0" @@ -26,6 +25,6 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:appcompat-v7:27.0.2' testCompile 'junit:junit:4.12' }