-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
25 lines (22 loc) · 686 Bytes
/
index.js
File metadata and controls
25 lines (22 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* @format
*/
import { AppRegistry, YellowBox } from 'react-native'
import TrackPlayer from 'react-native-track-player'
import App from './src'
import { name as appName } from './app.json'
YellowBox.ignoreWarnings([
'Warning: AsyncStorage',
'Possible Unhandled',
'Warning: Possible Unhandled Prom',
'Warning: componentWillReceiveProps',
'RCTRootView cancelTouches',
'not authenticated',
'Animated: `useNativeDriver`',
'Sending `onAnimatedValueUpdate`',
'DataStore - Connection failed:',
"Can't perform a React state",
'Setting a timer'
])
AppRegistry.registerComponent(appName, () => App)
TrackPlayer.registerPlaybackService(() => require('./service.js'))