Skip to content

Commit

Permalink
upgrade example project to react-native 0.59
Browse files Browse the repository at this point in the history
  • Loading branch information
ivpusic committed Mar 20, 2019
1 parent 352b7b6 commit 23ffafa
Show file tree
Hide file tree
Showing 5 changed files with 304 additions and 138 deletions.
22 changes: 22 additions & 0 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Example project

## Install deps

```bash
cd example
yarn install
```

## Running (ios)

```bash
cd example
yarn ios
```

## Running (android)

```bash
cd example
yarn android
```
2 changes: 1 addition & 1 deletion example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath 'com.android.tools.build:gradle:3.3.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
36 changes: 18 additions & 18 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
PODS:
- QBImagePickerController (3.4.0)
- React/Core (0.57.8):
- yoga (= 0.57.8.React)
- React/fishhook (0.57.8)
- React/RCTActionSheet (0.57.8):
- React/Core (0.59.1):
- yoga (= 0.59.1.React)
- React/fishhook (0.59.1)
- React/RCTActionSheet (0.59.1):
- React/Core
- React/RCTAnimation (0.57.8):
- React/RCTAnimation (0.59.1):
- React/Core
- React/RCTBlob (0.57.8):
- React/RCTBlob (0.59.1):
- React/Core
- React/RCTGeolocation (0.57.8):
- React/RCTGeolocation (0.59.1):
- React/Core
- React/RCTImage (0.57.8):
- React/RCTImage (0.59.1):
- React/Core
- React/RCTNetwork
- React/RCTLinkingIOS (0.57.8):
- React/RCTLinkingIOS (0.59.1):
- React/Core
- React/RCTNetwork (0.57.8):
- React/RCTNetwork (0.59.1):
- React/Core
- React/RCTSettings (0.57.8):
- React/RCTSettings (0.59.1):
- React/Core
- React/RCTText (0.57.8):
- React/RCTText (0.59.1):
- React/Core
- React/RCTVibration (0.57.8):
- React/RCTVibration (0.59.1):
- React/Core
- React/RCTWebSocket (0.57.8):
- React/RCTWebSocket (0.59.1):
- React/Core
- React/fishhook
- React/RCTBlob
- RNImageCropPicker (0.21.3):
- RNImageCropPicker (0.23.0):
- QBImagePickerController
- React/Core
- RSKImageCropper
- RSKImageCropper (2.2.1)
- yoga (0.57.8.React)
- yoga (0.59.1.React)

DEPENDENCIES:
- React/Core (from `../node_modules/react-native`)
Expand Down Expand Up @@ -65,10 +65,10 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
QBImagePickerController: d54cf93db6decf26baf6ed3472f336ef35cae022
React: 1fe0eb13d90b625d94c3b117c274dcfd2e760e11
React: 1d605e098d69bdf08960787f3446f0a9dc2e2ccf
RNImageCropPicker: 32ca4b9fef4e1b7b85ba69494242122948117e06
RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97
yoga: b1ce48b6cf950b98deae82838f5173ea7cf89e85
yoga: 128daf064cacaede0c3bb27424b6b4c71052e6cd

PODFILE CHECKSUM: 4471a980145b75efa0c908363a6ae6487e284263

Expand Down
8 changes: 5 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start"
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"android": "node node_modules/react-native/local-cli/cli.js run-android"
},
"dependencies": {
"react": "16.8.3",
"react-native": "0.58.5",
"react": "16.8.4",
"react-native": "0.59.1",
"react-native-image-crop-picker": "../",
"react-native-video": "git://github.com/react-native-community/react-native-video.git"
},
Expand Down

0 comments on commit 23ffafa

Please sign in to comment.