subtracks/index.js
austinried 4152ff6cfb Revert "switched to navigation-react-native"
This reverts commit a8d0211ab7739b71fc5e32206ff3e85dbf7f051c.
2021-06-25 09:23:19 +09:00

16 lines
526 B
JavaScript

import 'react-native-gesture-handler';
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'));