Skip to content

Commit

Permalink
Bump Android compile & target version to 33 (Android 13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy2244 authored and nielsvanvelzen committed Sep 10, 2022
1 parent ae12625 commit ea886d8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ plugins {

android {
namespace = "org.jellyfin.androidtv"
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33

// Release version
applicationId = namespace
Expand Down
4 changes: 2 additions & 2 deletions playback/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33
}

sourceSets["main"].java.srcDirs("src/main/kotlin")
Expand Down
8 changes: 6 additions & 2 deletions playback/exoplayer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33
}

sourceSets["main"].java.srcDirs("src/main/kotlin")
Expand All @@ -28,6 +28,10 @@ dependencies {
// Jellyfin
implementation(projects.playback.core)

// Kotlin
implementation(libs.kotlinx.coroutines)
implementation(libs.kotlinx.coroutines.guava)

// ExoPlayer
implementation(libs.exoplayer)

Expand Down
4 changes: 2 additions & 2 deletions playback/jellyfin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33
}

sourceSets["main"].java.srcDirs("src/main/kotlin")
Expand Down
4 changes: 2 additions & 2 deletions playback/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33
}

buildFeatures {
Expand Down
4 changes: 2 additions & 2 deletions preference/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33
}

buildFeatures {
Expand Down

0 comments on commit ea886d8

Please sign in to comment.