remote control shtuff

This commit is contained in:
Violet Caulfield
2024-12-31 05:33:13 -06:00
parent cd162ea192
commit 04223573b1
4 changed files with 28 additions and 13 deletions

View File

@@ -2,5 +2,8 @@ import 'react-native-gesture-handler';
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
import { PlaybackService } from './player/service'
import TrackPlayer from 'react-native-track-player';
TrackPlayer.registerPlaybackService(() => PlaybackService);
AppRegistry.registerComponent(appName, () => App);