We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e87d51 commit 56e86b7Copy full SHA for 56e86b7
app/build.gradle.kts
@@ -20,8 +20,9 @@ plugins {
20
alias(libs.plugins.kotlin.parcelize)
21
}
22
23
+val appConfig = AppConfig()
24
+
25
android {
- val appConfig = AppConfig()
26
27
namespace = appConfig.id
28
compileSdk = appConfig.compileSdk
@@ -60,6 +61,14 @@ android {
60
61
62
63
64
+kotlin {
65
+ jvmToolchain(appConfig.javaVersion.toString().toInt())
66
+}
67
68
+kapt {
69
+ correctErrorTypes = true
70
71
72
dependencies {
73
//Compile time dependencies
74
kapt(libs.androidx.lifecycle.compiler)
0 commit comments