-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from jarnedemeulemeester/develop
First public version 0.1.0
- Loading branch information
Showing
156 changed files
with
8,243 additions
and
295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Findroid does not collection any personal data. | ||
|
||
Findroid connects to a provided Jellyfin server which may collect some personal data such as IP address and device name. | ||
This provided Jellyfin server is in most cases owned by the user themselves. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,40 @@ | ||
Jellyfin | ||
![Findroid banner](images/banner.svg) | ||
|
||
# Findroid | ||
|
||
Findroid is third-party Android application for Jellyfin that provides a native user interface to browse and play movies and series. | ||
|
||
I am developing this application in my spare time. | ||
|
||
**This project is in its early stages so expect bugs.** | ||
|
||
## Screenshots | ||
Home | Library | Movie | Season | Episode | ||
-----|---------|-------|--------|-------- | ||
![Home](images/home-light-dark.png) | ![Library](images/library-dark.png) | ![Movie](images/movie-dark.png) | ![Season](images/season-dark.png) | ![Episode](images/episode-dark.png) | ||
|
||
## Features | ||
- Completely native interface | ||
- Supported media items: movies, series, seasons, episodes | ||
- Direct play only, (no transcoding) | ||
- Video codes: H.263, H.264, H.265, VP8, VP9, AV1 | ||
- Support depends on Android device | ||
- Audio codes: Vorbis, Opus, FLAC, ALAC, PCM µ-law, PCM A-law, MP1, MP2, MP3, AMR-NB, AMR-WB, AAC, AC-3, E-AC-3, DTS, DTS-HD, TrueHD | ||
- Support provided by ExoPlayer FFmpeg extension | ||
- Subtitle codecs: SRT, VTT, SSA/ASS, PGSSUB | ||
- SSA/ASS has limited styling support see [this issue](https://github.com/google/ExoPlayer/issues/8435) | ||
|
||
## Planned features | ||
- Websocket connection (Syncplay) | ||
- Caching | ||
- Offline playback / downloads | ||
- Picture in picture mode | ||
- Chromecast support | ||
|
||
This project is licensed under [GPLv3](LICENSE). | ||
|
||
The logo is a combination of the Jellyfin logo and the Android robot. | ||
|
||
The Android robot is reproduced or modified from work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License. | ||
|
||
Android is a trademark of Google LLC. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,111 @@ | ||
plugins { | ||
id 'com.android.application' | ||
id 'kotlin-android' | ||
id 'kotlin-parcelize' | ||
id 'kotlin-kapt' | ||
id 'androidx.navigation.safeargs.kotlin' | ||
id 'dagger.hilt.android.plugin' | ||
id 'com.google.android.gms.oss-licenses-plugin' | ||
} | ||
|
||
android { | ||
compileSdkVersion 30 | ||
buildToolsVersion "30.0.3" | ||
compileSdkVersion 31 | ||
buildToolsVersion "31.0.0" | ||
|
||
defaultConfig { | ||
applicationId "dev.jdtech.jellyfin" | ||
minSdkVersion 24 | ||
targetSdkVersion 30 | ||
targetSdkVersion 31 | ||
versionCode 1 | ||
versionName "1.0" | ||
versionName "0.1.0" | ||
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
minifyEnabled true | ||
shrinkResources true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
compileOptions { | ||
coreLibraryDesugaringEnabled true | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
kotlinOptions { | ||
jvmTarget = '1.8' | ||
} | ||
|
||
buildFeatures { | ||
dataBinding true | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation 'androidx.core:core-ktx:1.6.0' | ||
implementation 'androidx.core:core-splashscreen:1.0.0-alpha01' | ||
implementation 'androidx.appcompat:appcompat:1.3.1' | ||
|
||
// Material | ||
implementation 'com.google.android.material:material:1.4.0' | ||
|
||
// ConstraintLayout | ||
implementation 'androidx.constraintlayout:constraintlayout:2.1.0' | ||
|
||
// Navigation | ||
def navigation_version = "2.3.5" | ||
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version" | ||
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version" | ||
|
||
// RecyclerView | ||
implementation "androidx.recyclerview:recyclerview:1.2.1" | ||
implementation "androidx.recyclerview:recyclerview-selection:1.1.0" | ||
|
||
// Room | ||
def room_version = "2.3.0" | ||
implementation "androidx.room:room-runtime:$room_version" | ||
kapt "androidx.room:room-compiler:$room_version" | ||
implementation "androidx.room:room-ktx:$room_version" | ||
|
||
// Preference | ||
def preference_version = "1.1.1" | ||
implementation "androidx.preference:preference-ktx:$preference_version" | ||
|
||
// Jellyfin | ||
def jellyfin_version = "1.0.2" | ||
implementation "org.jellyfin.sdk:jellyfin-platform-android:$jellyfin_version" | ||
|
||
// Glide | ||
def glide_version = "4.12.0" | ||
implementation "com.github.bumptech.glide:glide:$glide_version" | ||
kapt "com.github.bumptech.glide:compiler:$glide_version" | ||
|
||
// Hilt | ||
def hilt_version = "2.38.1" | ||
implementation "com.google.dagger:hilt-android:$hilt_version" | ||
kapt "com.google.dagger:hilt-compiler:$hilt_version" | ||
|
||
// ExoPlayer | ||
def exoplayer_version = "2.15.0" | ||
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version" | ||
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version" | ||
implementation files('libs/extension-ffmpeg-release.aar') | ||
|
||
// Timber | ||
def timber_version = "5.0.0" | ||
implementation "com.jakewharton.timber:timber:$timber_version" | ||
|
||
def oss_licenses_version = "17.0.0" | ||
implementation "com.google.android.gms:play-services-oss-licenses:$oss_licenses_version" | ||
|
||
// Testing | ||
testImplementation 'junit:junit:4.13.2' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.3' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' | ||
|
||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | ||
implementation 'androidx.core:core-ktx:1.5.0' | ||
implementation 'androidx.appcompat:appcompat:1.3.0' | ||
implementation 'com.google.android.material:material:1.3.0' | ||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' | ||
testImplementation 'junit:junit:4.+' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.2' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' | ||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package dev.jdtech.jellyfin | ||
|
||
import android.app.Application | ||
import androidx.appcompat.app.AppCompatDelegate | ||
import androidx.preference.PreferenceManager | ||
import dagger.hilt.android.HiltAndroidApp | ||
import timber.log.Timber | ||
|
||
@HiltAndroidApp | ||
class BaseApplication : Application() { | ||
override fun onCreate() { | ||
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this) | ||
|
||
when (sharedPreferences.getString("theme", null)) { | ||
"system" -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM) | ||
"light" -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO) | ||
"dark" -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES) | ||
} | ||
|
||
super.onCreate() | ||
if (BuildConfig.DEBUG) { | ||
Timber.plant(Timber.DebugTree()) | ||
} | ||
} | ||
} |
Oops, something went wrong.