Skip to content

Commit 1ea77d7

Browse files
authored
Merge pull request #111 from DayOnePl/react-native-0.56-android
Fix wrong build tools version in RN 0.56
2 parents dc7da1c + a442665 commit 1ea77d7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

android/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 27
5-
buildToolsVersion "27.0.3"
4+
compileSdkVersion rootProject.ext.compileSdkVersion
5+
buildToolsVersion rootProject.ext.buildToolsVersion
66

77
defaultConfig {
8-
minSdkVersion 16
9-
targetSdkVersion 27
8+
minSdkVersion rootProject.ext.minSdkVersion
9+
targetSdkVersion rootProject.ext.targetSdkVersion
1010
versionCode 1
1111
versionName "1.0"
1212
ndk {

0 commit comments

Comments
 (0)