Skip to content

Commit

Permalink
[project] Probable fix on crash when dealing with ethereum.
Browse files Browse the repository at this point in the history
  • Loading branch information
seland committed Feb 4, 2018
1 parent c2bdc92 commit 83c9740
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
5 changes: 5 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import { Navigation } from 'react-native-navigation';
import configureStore from './src/config/configureStore';
import { registerScreens } from './src/screens/screens';
import { screen, appStyle, tabsStyle } from './src/global/Screens';
import asyncToGenerator from 'async-to-generator'

// Fix for https://github.com/Bit-Nation/BITNATION-Pangea-mobile/issues/166
// Related with https://github.com/facebook/react-native/issues/4844
babelHelpers.asyncToGenerator = asyncToGenerator;

const store = configureStore();
registerScreens(store, Provider);
Expand Down
27 changes: 10 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"dependencies": {
"BITNATION-Pangea-libs": "git+https://github.com/Bit-Nation/BITNATION-Pangea-libs.git#0.3.1",
"assert": "^1.4.1",
"async-to-generator": "^1.1.0",
"awilix": "^3.0.1",
"bignumber.js": "^5.0.0",
"buffer": "^4.9.1",
Expand Down

0 comments on commit 83c9740

Please sign in to comment.