build: update agp
AGP -> 8.2.0 Requires me to enable Java 8 desugaring for some...reason.
This commit is contained in:
parent
7d9ed7d114
commit
b1c48f13fd
2 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,7 @@ android {
|
|||
}
|
||||
|
||||
compileOptions {
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
|
@ -127,6 +128,7 @@ dependencies {
|
|||
// Exoplayer (Vendored)
|
||||
implementation project(":media-lib-exoplayer")
|
||||
implementation project(":media-lib-decoder-ffmpeg")
|
||||
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.0.4"
|
||||
|
||||
// Image loading
|
||||
implementation 'io.coil-kt:coil-base:2.4.0'
|
||||
|
|
|
@ -12,7 +12,7 @@ buildscript {
|
|||
}
|
||||
|
||||
plugins {
|
||||
id "com.android.application" version '8.1.2' apply false
|
||||
id "com.android.application" version '8.2.0' apply false
|
||||
id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
|
||||
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
|
||||
id "com.google.devtools.ksp" version '1.9.10-1.0.13' apply false
|
||||
|
|
Loading…
Reference in a new issue