subtracks/index.js
austinried 17fe1b9850 switched to navigation-react-native
seems much simpler, but now i may need some other deps...
2021-06-23 22:19:25 +09:00

15 lines
487 B
JavaScript

import 'react-native-get-random-values';
import { AppRegistry, LogBox } from 'react-native';
// ignore recoil's timer warning on android:
// https://github.com/facebookexperimental/Recoil/issues/1030
LogBox.ignoreLogs(["timer"]);
import App from './App';
import { name as appName } from './app.json';
import TrackPlayer from 'react-native-track-player';
AppRegistry.registerComponent(appName, () => App);
TrackPlayer.registerPlaybackService(() => require('./src/playback/service'));