From a941d0e75a54ea92cbee7f07596324eec06e97f3 Mon Sep 17 00:00:00 2001 From: Viktoras Jegorovas Date: Mon, 13 Aug 2018 14:25:51 +0300 Subject: [PATCH] Wrapper compatible with lower SDK versions --- android/build.gradle | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 5668dc4..31f2d1b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -28,12 +28,12 @@ allprojects { apply plugin: 'com.android.library' android { - compileSdkVersion 26 - buildToolsVersion "27.0.2" + compileSdkVersion 27 + buildToolsVersion "26.0.2" defaultConfig { minSdkVersion 16 - targetSdkVersion 26 + targetSdkVersion 27 versionCode 1 versionName "1.0" ndk { @@ -74,7 +74,8 @@ dependencies { annotationProcessor 'com.neenbedankt.bundles:argument:1.0.4' compile 'com.neenbedankt.bundles:argument:1.0.4' compile 'com.facebook.react:react-native:+' - compile 'com.android.support:appcompat-v7:26.1.0' + compile 'com.android.support:appcompat-v7:27.1.1' + compile 'com.android.support:design:27.1.1' compile 'com.sumup:merchant-sdk:3.0.0' }