This is the repo for Hound Media Server's Android, AndroidTV, iOS and tvOS apps. For the server and web app repo, go here.
This is an Expo project created with create-expo-app.
This project uses
- the React Native TV fork, which supports both phone (Android and iOS) and TV (Android TV and Apple TV) targets
- the React Native TV config plugin to allow Expo prebuild to modify the project's native files for TV builds
You can install Android mobile and Android TV apps by sideloading the .apk in the Releases page. iOS and tvOS are not available yet outside of the development environment, as publishing for iOS requires more time.
-
cdinto the project -
For TV development:
yarn
yarn prebuild:tv # Executes clean Expo prebuild with TV modifications
yarn ios # Build and run for Apple TV
yarn android # Build for Android TV
yarn web # Run the project on web from localhost- For mobile development:
yarn
yarn prebuild # Executes Expo prebuild with no TV modifications
yarn ios # Build and run for iOS
yarn android # Build for Android mobile
yarn web # Run the project on web from localhostNOTE: Setting the environment variable
EXPO_TV=1enables the@react-native-tvos/config-tvplugin to modify the project for TV. This can also be done by setting the parameterisTVto true in theapp.json.

