Skip to content

Commit 5fee83f

Browse files
committed
Resolve #2 issue
1 parent ff6b52e commit 5fee83f

9 files changed

Lines changed: 5052 additions & 4546 deletions

File tree

Example/.flowconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[ignore]
22
; We fork some components by platform
33
.*/*[.]android.js
4+
.*/node_modules/.*
45

56
; Ignore "BUCK" generated dirs
67
<PROJECT_ROOT>/\.buckd/
@@ -42,4 +43,4 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
4243
unsafe.enable_getters_and_setters=true
4344

4445
[version]
45-
^0.49.1
46+
^0.54.0

Example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def enableProguardInReleaseBuilds = false
9191

9292
android {
9393
compileSdkVersion 23
94-
buildToolsVersion '25.0.0'
94+
buildToolsVersion '26.0.2'
9595

9696
defaultConfig {
9797
applicationId "com.example"

Example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.3'
8+
classpath 'com.android.tools.build:gradle:3.0.1'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Sep 10 12:51:04 CEST 2017
1+
#Sun Dec 17 16:10:54 CET 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

Example/index.android.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import BottomSheet from 'react-native-js-bottom-sheet'
66
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'
77
import Entypo from 'react-native-vector-icons/Entypo'
88

9-
export default class Example extends Component {
9+
export default class Example extends React.PureComponent<{}> {
1010
bottomSheet: BottomSheet
1111

1212
_onPressButton = () => {

0 commit comments

Comments
 (0)