From 209af5c345c49238c8d9fc8581a1d904250f480b Mon Sep 17 00:00:00 2001 From: pepya2 Date: Tue, 9 Apr 2019 08:15:31 +0300 Subject: [PATCH 1/2] Fix android building errors --- android/build.gradle | 2 -- android/src/main/AndroidManifest.xml | 1 - 2 files changed, 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 2614c62..64e446a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,7 +4,6 @@ def _ext = rootProject.ext def _compileSdkVersion = _ext.has('compileSdkVersion') ? _ext.compileSdkVersion : 26 def _buildToolsVersion = _ext.has('buildToolsVersion') ? _ext.buildToolsVersion : '26.0.3' -def _minSdkVersion = _ext.has('minSdkVersion') ? _ext.minSdkVersion : 16 def _targetSdkVersion = _ext.has('targetSdkVersion') ? _ext.targetSdkVersion : 26 android { @@ -12,7 +11,6 @@ android { buildToolsVersion _buildToolsVersion defaultConfig { - minSdkVersion _minSdkVersion targetSdkVersion _targetSdkVersion } diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 818651f..3d228f4 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -1,5 +1,4 @@ - From e350a0bfa3a9b9cc28749f60e08f83962923634c Mon Sep 17 00:00:00 2001 From: pepya2 Date: Tue, 9 Apr 2019 08:15:51 +0300 Subject: [PATCH 2/2] Fix android building errors --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 64e446a..5197f72 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,5 +20,5 @@ android { } dependencies { - compile "com.facebook.react:react-native:+" // From node_modules + implementation "com.facebook.react:react-native:+" // From node_modules }