diff --git a/build.gradle b/build.gradle index e05a850..03324bc 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:8.5.0' + classpath 'com.android.tools.build:gradle:8.5.1' } } @@ -31,6 +31,6 @@ allprojects { } } -task clean(type: Delete) { - delete rootProject.buildDir +tasks.register('clean', Delete) { + delete rootProject.layout.buildDirectory } diff --git a/extLibs/PreLollipopTransitions/build.gradle b/extLibs/PreLollipopTransitions/build.gradle index e51af69..22b0367 100644 --- a/extLibs/PreLollipopTransitions/build.gradle +++ b/extLibs/PreLollipopTransitions/build.gradle @@ -66,5 +66,5 @@ android { } dependencies { - implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.appcompat:appcompat:1.7.0' } \ No newline at end of file diff --git a/library/build.gradle b/library/build.gradle index 0e8c249..bcd3725 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -36,8 +36,10 @@ publishing { } allprojects { - tasks.withType(JavaCompile) { - // options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + tasks.withType(JavaCompile).tap { + configureEach { + // options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + } } } @@ -96,7 +98,7 @@ dependencies { api 'androidx.annotation:annotation:1.8.0' api 'androidx.appcompat:appcompat:1.7.0' api 'androidx.multidex:multidex:2.0.1' - api 'com.google.android.apps.muzei:muzei-api:3.4.0' + api 'com.google.android.apps.muzei:muzei-api:3.4.2' api 'dev.jahir.KustomAPI:api:6369c37' api 'dev.jahir.KustomAPI:preset:6369c37' @@ -104,7 +106,6 @@ dependencies { implementation 'androidx.recyclerview:recyclerview:1.3.2' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.palette:palette:1.0.0' - // implementation 'com.google.android.material:material:1.9.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.viewpager2:viewpager2:1.1.0' implementation 'androidx.core:core-splashscreen:1.0.1'