diff --git a/app/build.gradle b/app/build.gradle index a6f92c53..6effddc8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -66,15 +66,15 @@ android { dependencies { compileOnly 'de.robv.android.xposed:api:82' - api 'androidx.annotation:annotation:1.7.0' - def roomVersion = '2.6.0' + api 'androidx.annotation:annotation:1.7.1' + def roomVersion = '2.6.1' implementation "androidx.room:room-runtime:$roomVersion" annotationProcessor "androidx.room:room-compiler:$roomVersion" implementation "androidx.room:room-ktx:$roomVersion" ksp "androidx.room:room-compiler:$roomVersion" implementation 'io.reactivex.rxjava3:rxjava:3.1.7' - implementation 'org.luckypray:dexkit:2.0.0-rc8' + implementation 'org.luckypray:dexkit:2.0.0' // https://stackoverflow.com/questions/61195038/excluding-dependency-from-implementation-files implementation files('apktool_2.7.0.jar') implementation 'com.squareup.okhttp3:okhttp:4.12.0' diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 05044f2d..12f175de 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Tue Aug 24 21:31:51 CST 2021 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index 149890c2..e073e541 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,8 +5,8 @@ pluginManagement { mavenCentral() } plugins { - id 'com.android.application' version '8.1.4' - id 'com.android.library' version '8.1.4' + id 'com.android.application' version '8.2.2' + id 'com.android.library' version '8.2.2' id 'org.jetbrains.kotlin.android' version '1.9.0' id 'com.google.devtools.ksp' version '1.9.0-1.0.13' apply false }