Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jellyfin/jellyfin-androidtv
Android TV Client for Jellyfin
https://github.com/jellyfin/jellyfin-androidtv
android android-tv java jellyfin kotlin
Last synced: 5 days ago
JSON representation
Android TV Client for Jellyfin
- Host: GitHub
- URL: https://github.com/jellyfin/jellyfin-androidtv
- Owner: jellyfin
- License: gpl-2.0
- Created: 2018-12-13T14:33:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-28T16:28:23.000Z (3 months ago)
- Last Synced: 2024-10-29T15:29:10.463Z (3 months ago)
- Topics: android, android-tv, java, jellyfin, kotlin
- Language: Kotlin
- Homepage: https://jellyfin.org
- Size: 35.2 MB
- Stars: 2,824
- Watchers: 47
- Forks: 480
- Open Issues: 313
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
Jellyfin Android TV
Part of the Jellyfin Project
---
Jellyfin Android TV is a Jellyfin client for Android TV, Nvidia Shield, and Amazon Fire TV devices.
We welcome all contributions and pull requests! If you have a larger feature in mind please open an
issue so we can discuss the implementation before you start.## Translating
Translations can be improved very easily from our
[Weblate](https://translate.jellyfin.org/projects/jellyfin-android/jellyfin-androidtv) instance.
Look through the following graphic to see if your native language could use some work!## Build Process
### Dependencies
- Android Studio
### Build
1. Clone or download this repository
```sh
git clone https://github.com/jellyfin/jellyfin-androidtv.git
cd jellyfin-androidtv
```2. Open the project in Android Studio and run it from there or build an APK directly through Gradle:
```sh
./gradlew assembleDebug
```
Add the Android SDK to your PATH environment variable or create the ANDROID_SDK_ROOT variable for
this to work.### Deploy to device/emulator
```sh
./gradlew installDebug
```*You can also replace the "Debug" with "Release" to get an optimized release binary.*