Skip to content

Commit

Permalink
Merge branch 'expo-sdk-34-support' of github.com:bugsnag/bugsnag-js i…
Browse files Browse the repository at this point in the history
…nto expo-sdk-34-support
  • Loading branch information
Cawllec committed Aug 12, 2019
2 parents d17b3be + ae6fb82 commit 9bd8237
Show file tree
Hide file tree
Showing 6 changed files with 939 additions and 1,230 deletions.
5 changes: 4 additions & 1 deletion examples/expo/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import bugsnagClient from './lib/bugsnag';
import React from 'react';
import { Platform, StatusBar, StyleSheet, View } from 'react-native';
import { AppLoading, Asset, Font, Icon } from 'expo';
import { AppLoading } from 'expo';
import * as Font from 'expo-font';
import { Asset } from 'expo-asset';
import * as Icon from '@expo/vector-icons';
import AppNavigator from './navigation/AppNavigator';
import ErrorFallback from './components/ErrorFallback';

Expand Down
2 changes: 1 addition & 1 deletion examples/expo/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Bugsnag Expo Example",
"slug": "bugsnag-expo-example",
"privacy": "unlisted",
"sdkVersion": "32.0.0",
"sdkVersion": "34.0.0",
"platforms": [
"ios",
"android"
Expand Down
4 changes: 2 additions & 2 deletions examples/expo/components/TabBarIcon.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { Icon } from 'expo';
import * as Icon from '@expo/vector-icons';

import Colors from '../constants/Colors';

Expand All @@ -14,4 +14,4 @@ export default class TabBarIcon extends React.Component {
/>
);
}
}
}
15 changes: 10 additions & 5 deletions examples/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@
"preset": "jest-expo"
},
"dependencies": {
"@bugsnag/expo": "^6.3.0",
"@bugsnag/expo": "6.4.0-alpha.0",
"@expo/samples": "2.1.1",
"expo": "^32.0.0",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-navigation": "^3.0.9"
"@expo/vector-icons": "^10.0.4",
"expo": "^34.0.1",
"expo-asset": "^6.0.0",
"expo-font": "^6.0.1",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-gesture-handler": "^1.3.0",
"react-native-reanimated": "^1.2.0",
"react-navigation": "^3.11.1"
},
"devDependencies": {
"babel-preset-expo": "^5.0.0",
Expand Down
Loading

0 comments on commit 9bd8237

Please sign in to comment.