From 6ea9ce3904791aa7e598ce9673bd5f9e08e27bcf Mon Sep 17 00:00:00 2001 From: Ralph Pina Date: Tue, 11 Apr 2017 14:31:41 -0700 Subject: [PATCH 1/4] bump Android libs --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 50350dd..f825bbd 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,19 +4,19 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:1.3.1' + classpath 'com.android.tools.build:gradle:2.3.0' } } apply plugin: 'com.android.library' android { - compileSdkVersion 23 - buildToolsVersion "23.0.1" + compileSdkVersion 25 + buildToolsVersion "25.0.2" defaultConfig { minSdkVersion 16 - targetSdkVersion 22 + targetSdkVersion 25 versionCode 1 versionName "1.0" } From d6e307af482819297c7ee4c6a9717e65aa09ded2 Mon Sep 17 00:00:00 2001 From: Ralph Pina Date: Tue, 11 Apr 2017 16:41:36 -0700 Subject: [PATCH 2/4] fixed lint --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index f825bbd..994b5e3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -26,5 +26,5 @@ android { } dependencies { - compile 'com.facebook.react:react-native:+' + compile 'com.facebook.react:react-native:0.42.0' } From 8dab866d8cbe040bdf91d6303edbfedc22409450 Mon Sep 17 00:00:00 2001 From: Faisal Alqadi Date: Mon, 29 May 2017 17:03:31 -0700 Subject: [PATCH 3/4] Use react native version that parent specifies --- android/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 994b5e3..8d40db1 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -26,5 +26,6 @@ android { } dependencies { - compile 'com.facebook.react:react-native:0.42.0' + //noinspection GradleDynamicVersion + provided 'com.facebook.react:react-native:' + project.ext.reactNative } From 1d0edf903986d13acbba147a96b07f48cc5219fc Mon Sep 17 00:00:00 2001 From: Faisal Alqadi Date: Fri, 25 Aug 2017 12:12:27 -0700 Subject: [PATCH 4/4] Bump target sdk --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 8d40db1..c25dba9 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -11,12 +11,12 @@ buildscript { apply plugin: 'com.android.library' android { - compileSdkVersion 25 - buildToolsVersion "25.0.2" + compileSdkVersion 26 + buildToolsVersion "25.0.3" defaultConfig { minSdkVersion 16 - targetSdkVersion 25 + targetSdkVersion 26 versionCode 1 versionName "1.0" }