From 7bbd549d91f745c2c9bdbc9ba496f87f0f77ac0e Mon Sep 17 00:00:00 2001 From: Chris Griffin Date: Tue, 25 Jun 2019 15:18:37 -0400 Subject: [PATCH] Fix #3 typos --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 7ab0f55..7055b60 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -15,12 +15,12 @@ buildscript { apply plugin: 'com.android.library' android { - safeExtGet('compileSdkVersion', 23) - safeExtGet('buildToolsVersion', '23.0.1') + compileSdkVersion safeExtGet('compileSdkVersion', 23) + buildToolsVersion safeExtGet('buildToolsVersion', '23.0.1') defaultConfig { - safeExtGet('minSdkVersion', 16) - safeExtGet('targetSdkVersion', 22) + minSdkVersion safeExtGet('minSdkVersion', 16) + targetSdkVersion safeExtGet('targetSdkVersion', 22) versionCode 1 versionName "0.2.0" }