mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-01-26 16:29:42 -06:00
plz
This commit is contained in:
@@ -6,8 +6,8 @@ import { CarPlayInterface, NowPlayingTemplate, TabBarTemplate } from "react-nati
|
||||
|
||||
// 'react-native-carplay' has also been disabled for android builds in react-native.config.js
|
||||
const CarPlay = Platform.OS === 'ios' ? require('react-native-carplay').CarPlay as CarPlayInterface : null;
|
||||
const CarPlayNavigation : TabBarTemplate = Platform.OS === 'ios' ? require('./CarPlay/Navigation').CarPlayNavigation : null;
|
||||
const CarPlayNowPlaying : NowPlayingTemplate = Platform.OS === 'ios' ? require('./CarPlay/NowPlaying').CarPlayNowPlaying : null;
|
||||
const CarPlayNavigation : TabBarTemplate = CarPlay ? require('./CarPlay/Navigation') : null;
|
||||
const CarPlayNowPlaying : NowPlayingTemplate = CarPlay ? require('./CarPlay/NowPlaying') : null;
|
||||
|
||||
interface JellifyContext {
|
||||
loggedIn: boolean;
|
||||
|
||||
Reference in New Issue
Block a user