Skip to content

Commit ad030dd

Browse files
committed
Update to react-native 0.58.x.
1 parent a3222f7 commit ad030dd

File tree

20 files changed

+805
-2516
lines changed

20 files changed

+805
-2516
lines changed

.babelrc

-15
This file was deleted.

.eslintignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
/ios/**
33
/android/**
44
/coverage/**
5-
/flow-typed/**
5+
/flow-typed/**
6+
/patches/**

.flowconfig

+8-1
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,24 @@
1919
; Ignore metro
2020
.*/node_modules/metro/.*
2121

22+
; Dependency of realm
23+
.*/node_modules/license-checker/.*
24+
2225
[untyped]
2326
; Bunch of errors (uses to new version of Flow?)
2427
.*/node_modules/react-native-testing-library/.*
2528
.*/node_modules/react-native-safe-area-view/.*
29+
; Flow definitions from Paper not compatible with RN 0.58.x and flow 0.86.0
30+
.*/node_modules/react-native-paper/.*
31+
.*/node_modules/realm/node_modules/license-checker/
2632

2733
[include]
2834

2935
[libs]
3036
node_modules/react-native/Libraries/react-native/react-native-interface.js
3137
node_modules/react-native/flow/
3238
node_modules/react-native/flow-github/
39+
node_modules/react-navigation/flow/react-navigation.js
3340

3441
[options]
3542
emoji=true
@@ -76,4 +83,4 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
7683
unnecessary-optional-chain=error
7784

7885
[version]
79-
^0.78.0
86+
^0.86.0

android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ buildscript {
66
versionCode = 9
77
versionName = "0.0.9"
88
minSdkVersion = 16
9-
compileSdkVersion = 27
9+
compileSdkVersion = 28
1010
targetSdkVersion = 27
11-
supportLibVersion = "27.1.1"
11+
supportLibVersion = "28.0.0"
1212
}
1313
repositories {
1414
google()
1515
jcenter()
1616
}
1717
dependencies {
18-
classpath 'com.android.tools.build:gradle:3.3.0'
18+
classpath 'com.android.tools.build:gradle:3.3.1'
1919

2020
// NOTE: Do not place your application dependencies here; they belong
2121
// in the individual module build.gradle files

0 commit comments

Comments
 (0)