build: update agp

AGP -> 8.2.0

Requires me to enable Java 8 desugaring for some...reason.
This commit is contained in:
Alexander Capehart 2023-12-16 11:02:39 -07:00
parent 7d9ed7d114
commit b1c48f13fd
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 3 additions and 1 deletions

View file

@ -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'

View file

@ -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