@@ -14,7 +14,6 @@ plugins {
1414android {
1515 // Auxio implicitly depends on the native modules, explicitly specify it
1616 // here so the libraries are still stripped.
17- compileSdk target_sdk
1817 ndkVersion ndk_version
1918 namespace " org.oxycblt.auxio"
2019
@@ -35,6 +34,12 @@ android {
3534 targetCompatibility JavaVersion . VERSION_17
3635 }
3736
37+ java {
38+ toolchain {
39+ languageVersion = JavaLanguageVersion . of(17 )
40+ }
41+ }
42+
3843 buildTypes {
3944 debug {
4045 applicationIdSuffix " .debug"
@@ -89,7 +94,7 @@ dependencies {
8994 // General
9095 implementation " androidx.core:core-ktx:$core_version "
9196 implementation " androidx.appcompat:appcompat:1.7.1"
92- implementation " androidx.activity:activity-ktx:1.12.2 "
97+ implementation " androidx.activity:activity-ktx:1.13.0 "
9398 // noinspection GradleDependency
9499 implementation " androidx.fragment:fragment-ktx:1.6.2"
95100
@@ -144,12 +149,12 @@ dependencies {
144149 implementation project(" :media-lib-decoder-ffmpeg" )
145150
146151 // Image loading
147- implementation ' io.coil-kt.coil3:coil-core:3.3 .0'
152+ implementation ' io.coil-kt.coil3:coil-core:3.4 .0'
148153
149154 // Material
150155 // TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just
151156 // PR a fix.
152- implementation " com.google.android.material:material:1.14.0-alpha09 "
157+ implementation " com.google.android.material:material:1.14.0-alpha10 "
153158
154159 // Dependency Injection
155160 implementation " com.google.dagger:dagger:$hilt_version "
0 commit comments