mirror of
https://github.com/jellyfin/jellyfin-androidtv.git
synced 2024-11-26 23:50:27 +00:00
Update targetSdk to 34
This commit is contained in:
parent
a9ab6c86ea
commit
2d451e51a0
@ -8,11 +8,11 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace = "org.jellyfin.androidtv"
|
||||
compileSdk = 34
|
||||
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
targetSdk = 33
|
||||
minSdk = libs.versions.android.minSdk.get().toInt()
|
||||
targetSdk = libs.versions.android.targetSdk.get().toInt()
|
||||
|
||||
// Release version
|
||||
applicationId = namespace
|
||||
|
@ -1,8 +1,11 @@
|
||||
[versions]
|
||||
aboutlibraries = "11.2.2"
|
||||
acra = "5.11.3"
|
||||
android-compileSdk = "34"
|
||||
android-desugar = "2.0.4"
|
||||
android-gradle = "8.5.1"
|
||||
android-minSdk = "21"
|
||||
android-targetSdk = "34"
|
||||
androidx-activity = "1.9.1"
|
||||
androidx-appcompat = "1.7.0"
|
||||
androidx-cardview = "1.0.0"
|
||||
|
@ -5,10 +5,10 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace = "org.jellyfin.playback.core"
|
||||
compileSdk = 34
|
||||
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
minSdk = libs.versions.android.minSdk.get().toInt()
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
|
@ -5,10 +5,10 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace = "org.jellyfin.playback.jellyfin"
|
||||
compileSdk = 34
|
||||
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
minSdk = libs.versions.android.minSdk.get().toInt()
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
|
@ -5,10 +5,10 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace = "org.jellyfin.playback.exoplayer"
|
||||
compileSdk = 34
|
||||
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
minSdk = libs.versions.android.minSdk.get().toInt()
|
||||
}
|
||||
|
||||
lint {
|
||||
|
@ -5,10 +5,10 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace = "org.jellyfin.playback.media3.session"
|
||||
compileSdk = 34
|
||||
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
minSdk = libs.versions.android.minSdk.get().toInt()
|
||||
}
|
||||
|
||||
lint {
|
||||
|
@ -5,10 +5,10 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace = "org.jellyfin.preference"
|
||||
compileSdk = 34
|
||||
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
minSdk = libs.versions.android.minSdk.get().toInt()
|
||||
}
|
||||
|
||||
buildFeatures {
|
||||
|
Loading…
Reference in New Issue
Block a user