Francis Mariano
04/19/2023, 9:05 PMkevindmoore
04/19/2023, 9:18 PMVampire
04/19/2023, 9:29 PM./gradlew --version
output?Francis Mariano
04/20/2023, 12:12 PMWhat doesWelcome to Gradle 8.0! For more details see https://docs.gradle.org/8.0/release-notes.html ------------------------------------------------------------ Gradle 8.0 ------------------------------------------------------------ Build time: 2023-02-13 131521 UTC Revision: 62ab9b7c7f884426cf79fbedcf07658b2dbe9e97 Kotlin: 1.8.10 Groovy: 3.0.13 Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021 JVM: 17.0.6 (JetBrains s.r.o. 17.0.6+0-17.0.6b802.4-9586694) OS: Mac OS X 13.2.1 aarch64output?./gradlew --version
Francis Mariano
04/20/2023, 12:13 PMFrancis Mariano
04/20/2023, 12:15 PM./gradlew --version
is the version typed in gradle-wrapper.properties
????Vampire
04/20/2023, 12:56 PMVampire
04/20/2023, 12:59 PMFrancis Mariano
04/20/2023, 1:00 PMFrancis Mariano
04/20/2023, 1:15 PMsourceCompatibility
, targetCompatibility
and jvmTarget
???
android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
}Vampire
04/20/2023, 2:33 PM