Skip to content

Commit 9bef177

Browse files
committed
fix: support react native 0.57
React native 0.57 uses gradle 3, which in turn requires higher build tools and sdk version of android. So we bump it here in order to prevent build failures.
1 parent 10a89bb commit 9bef177

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
lib/
22
node_modules/
33
npm-debug.log
4-
4+
.idea/

android/build.gradle

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

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
4+
compileSdkVersion 27
5+
buildToolsVersion "27.0.3"
66

77
defaultConfig {
88
minSdkVersion 16
9-
targetSdkVersion 22
9+
targetSdkVersion 26
1010
versionCode 1
1111
versionName "1.0"
1212
ndk {

0 commit comments

Comments
 (0)