0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-19 19:42:18 +02:00

Update tools version and gradle wrapper

And finally add the `compileOptions` block to make Gradle 8
work, because the Google guys are still unable to fix their bugs.
This commit is contained in:
Markus Fisch 2023-12-09 16:29:48 +01:00
parent d00d08bae3
commit bf7eb7efd5
4 changed files with 12 additions and 2 deletions

View File

@ -52,6 +52,13 @@ android {
enableSplit = false
}
}
compileOptions {
// Required for Gradle 8.
sourceCompatibility = 17
targetCompatibility = 17
}
}
dependencies {

View File

@ -1,7 +1,7 @@
buildscript {
ext {
kotlin_version = '1.8.22'
tools_version = '7.4.2'
tools_version = '8.2.0'
sdk_version = 34
support_version = '25.3.1'
}

View File

@ -1,2 +1,5 @@
org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false

View File

@ -1,6 +1,6 @@
#Wed Jan 26 11:58:22 CET 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME