diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 8f568ef..81be998 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -38,8 +38,8 @@ android { applicationId = "com.fox2code.mmm" minSdk = 24 targetSdk = 33 - versionCode = 70 - versionName = "2.1.0" + versionCode = 72 + versionName = "2.1.1" vectorDrawables { useSupportLibrary = true } @@ -467,7 +467,7 @@ dependencies { implementation("androidx.security:security-crypto:1.1.0-alpha06") // some utils - implementation("commons-io:commons-io:2.11.0") + implementation("commons-io:commons-io:20030203.000550") implementation("org.apache.commons:commons-compress:1.23.0") // analytics diff --git a/build.gradle.kts b/build.gradle.kts index 2b3280e..b7d3206 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,12 +1,12 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { - google() mavenCentral() - gradlePluginPortal() + google() maven { setUrl("https://jitpack.io") } + gradlePluginPortal() } extra.apply { set("sentryConfigFile", rootProject.file("sentry.properties")) @@ -31,8 +31,8 @@ tasks.register("clean", Delete::class) { afterEvaluate { tasks.withType().configureEach { - sourceCompatibility = JavaVersion.VERSION_19.toString() - targetCompatibility = JavaVersion.VERSION_19.toString() + sourceCompatibility = JavaVersion.VERSION_17.toString() + targetCompatibility = JavaVersion.VERSION_17.toString() } }