Commit 9c45f290 authored by Gaëtan Renaudeau's avatar Gaëtan Renaudeau Committed by GitHub

Merge pull request #188 from IjzerenHein/fix-android-rn56

Fixed Android build on RN56 and RN57
parents 13b93589 b710850f
...@@ -11,12 +11,12 @@ buildscript { ...@@ -11,12 +11,12 @@ buildscript {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 25 compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 25
buildToolsVersion "25.0.3" buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : '25.0.3'
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 22 targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 22
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment