Skip to content

Commit

Permalink
🔧 Fix Java version on Precompiled Script
Browse files Browse the repository at this point in the history
Ops. The version inside com.escodro.android-library.gradle.kts was
hardcoded to Java 11. This was breaking the communication between the
repository and data source layers. Everything is fixed now.
  • Loading branch information
igorescodro committed Apr 26, 2023
1 parent cd3dd11 commit 2f12d88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
androidConfig()
proguardConfig()
kotlin {
jvmToolchain(JavaLanguageVersion.of(11).asInt())
jvmToolchain(AlkaaVersions.javaLanguageVersion.asInt())
}
}

Expand Down

0 comments on commit 2f12d88

Please sign in to comment.