Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4e0d221
Rewrite TmdbProvider to remove external lib dependency
Luna712 May 18, 2026
a221773
Temp add gson
Luna712 May 19, 2026
b840d0d
Move to app only
Luna712 May 25, 2026
8412b94
Merge branch 'master' into tmdb
fire-light42 May 27, 2026
3595256
Update build.gradle.kts
fire-light42 May 27, 2026
9a912bc
Merge branch 'recloudstream:master' into tmdb
Luna712 May 28, 2026
3e9e190
Let's use kotlinx serialization for new stuff
Luna712 May 28, 2026
c525299
Let's use kotlinx serialization for new stuff (part 2)
Luna712 May 29, 2026
0c4d5c3
Merge branch 'recloudstream:master' into tmdb
Luna712 May 29, 2026
5935523
-
Luna712 May 29, 2026
00663da
Merge branch 'master' into tmdb
Luna712 May 31, 2026
79b6fa2
Fix
Luna712 Jun 2, 2026
a074da4
Let's use kotlinx serialization for new stuff (part 3)
Luna712 Jun 4, 2026
9c372af
Merge branch 'recloudstream:master' into tmdb
Luna712 Jun 4, 2026
c6e5a91
Merge branch 'master' into tmdb
Luna712 Jun 19, 2026
66dd8bb
Keep all JsonProperty for now
Luna712 Jun 19, 2026
07c119f
Merge branch 'master' into tmdb
Luna712 Jun 25, 2026
86c35df
Merge branch 'master' into tmdb
Luna712 Jun 26, 2026
eb69d1f
Merge branch 'recloudstream:master' into tmdb
Luna712 Jun 30, 2026
52cdf89
Fixes
Luna712 Jun 30, 2026
612144c
Merge branch 'recloudstream:master' into tmdb
Luna712 Jul 12, 2026
0818b01
Remove gson changes and update ABI
Luna712 Jul 12, 2026
47cacf2
Merge branch 'recloudstream:master' into tmdb
Luna712 Jul 13, 2026
777e567
-
Luna712 Jul 13, 2026
1bf7d22
2.11.0
Luna712 Jul 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ dependencies {
implementation(libs.jackson.module.kotlin) // JSON Parser
implementation(libs.zipline)

// Temp/deprecated; will be removed once extensions have time to migrate from using it
implementation("com.google.code.gson:gson:2.11.0")
// Deprecated; will be removed once extensions have time to migrate from using it
implementation("me.xdrop:fuzzywuzzy:1.4.0")

Expand Down
2 changes: 0 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ qrcodeKotlin = "4.5.0"
rhino = { strictly = "1.8.1" } # Requires minSdk 26 or later beginning at version 1.9.0
safefile = "0.0.8"
shimmer = "0.5.0"
tmdbJava = "2.13.0"
torrentserver = "7861970"
tvprovider = "1.1.0"
video = "1.0.0"
Expand Down Expand Up @@ -129,7 +128,6 @@ qrcode-kotlin = { module = "io.github.g0dkar:qrcode-kotlin", version.ref = "qrco
rhino = { module = "org.mozilla:rhino", version.ref = "rhino" }
safefile = { module = "com.github.LagradOst:SafeFile", version.ref = "safefile" }
shimmer = { module = "com.facebook.shimmer:shimmer", version.ref = "shimmer" }
tmdb-java = { module = "com.uwetrottmann.tmdb2:tmdb-java", version.ref = "tmdbJava" }
torrentserver = { module = "com.github.recloudstream:torrentserver", version.ref = "torrentserver" }
tvprovider = { module = "androidx.tvprovider:tvprovider", version.ref = "tvprovider" }
video = { module = "com.google.android.mediahome:video", version.ref = "video" }
Expand Down
Loading