mirror of
https://github.com/jellyfin/jellyfin-androidtv.git
synced 2025-08-06 15:20:34 +08:00
90 lines
3.4 KiB
Markdown
90 lines
3.4 KiB
Markdown
<h1 align="center">Jellyfin Android TV</h1>
|
|
<h3 align="center">Part of the <a href="https://jellyfin.org">Jellyfin Project</a></h3>
|
|
|
|
---
|
|
|
|
<p align="center">
|
|
<img alt="Logo banner" src="https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true"/>
|
|
<br/><br/>
|
|
<a href="https://github.com/jellyfin/jellyfin-androidtv">
|
|
<img alt="GPL 2.0 License" src="https://img.shields.io/github/license/jellyfin/jellyfin-androidtv.svg"/>
|
|
</a>
|
|
<a href="https://github.com/jellyfin/jellyfin-androidtv/releases">
|
|
<img alt="Current Release" src="https://img.shields.io/github/release/jellyfin/jellyfin-androidtv.svg"/>
|
|
</a>
|
|
<a href="https://translate.jellyfin.org/projects/jellyfin-android/jellyfin-androidtv/">
|
|
<img alt="Translation Status" src="https://translate.jellyfin.org/widgets/jellyfin-android/-/jellyfin-androidtv/svg-badge.svg"/>
|
|
</a>
|
|
<br/>
|
|
<a href="https://opencollective.com/jellyfin">
|
|
<img alt="Donate" src="https://img.shields.io/opencollective/all/jellyfin.svg?label=backers"/>
|
|
</a>
|
|
<a href="https://features.jellyfin.org">
|
|
<img alt="Feature Requests" src="https://img.shields.io/badge/fider-vote%20on%20features-success.svg"/>
|
|
</a>
|
|
<a href="https://matrix.to/#/+jellyfin:matrix.org">
|
|
<img alt="Chat on Matrix" src="https://img.shields.io/matrix/jellyfin:matrix.org.svg?logo=matrix"/>
|
|
</a>
|
|
<a href="https://www.reddit.com/r/jellyfin">
|
|
<img alt="Join our Subreddit" src="https://img.shields.io/badge/reddit-r%2Fjellyfin-%23FF5700.svg"/>
|
|
</a>
|
|
<br/>
|
|
<a href="https://play.google.com/store/apps/details?id=org.jellyfin.androidtv">
|
|
<img width="153" alt="Jellyfin on Google Play" src="https://jellyfin.org/images/store-icons/google-play.png"/>
|
|
</a>
|
|
<a href="https://www.amazon.com/gp/aw/d/B07TX7Z725">
|
|
<img width="153" alt="Jellyfin on Amazon Appstore" src="https://jellyfin.org/images/store-icons/amazon.png"/>
|
|
</a>
|
|
<a href="https://f-droid.org/en/packages/org.jellyfin.androidtv/">
|
|
<img width="153" alt="Jellyfin on F-Droid" src="https://jellyfin.org/images/store-icons/fdroid.png"/>
|
|
</a>
|
|
<br/>
|
|
<a href="https://repo.jellyfin.org/releases/client/androidtv/">Download archive</a>
|
|
</p>
|
|
|
|
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!
|
|
|
|
<a href="https://translate.jellyfin.org/engage/jellyfin-android/">
|
|
<img alt="Detailed Translation Status" src="https://translate.jellyfin.org/widgets/jellyfin-android/-/jellyfin-androidtv/multi-auto.svg"/>
|
|
</a>
|
|
|
|
## 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.*
|