-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
28 lines (26 loc) · 903 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
buildscript {
dependencies {
classpath("com.google.android.gms:oss-licenses-plugin:0.10.6")
// ref: https://github.com/google/dagger/issues/3068
classpath("com.squareup:javapoet:1.13.0")
}
}
plugins {
alias(libs.plugins.androidGradlePlugin) apply false
alias(libs.plugins.kotlinPlugin) apply false
alias(libs.plugins.kotlinSerializationPlugin) apply false
alias(libs.plugins.kspPlugin) apply false
alias(libs.plugins.baselineProfilePlugin) apply false
alias(libs.plugins.composeCompiler) apply false
}
subprojects {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>()
.configureEach {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
compilerOptions
.freeCompilerArgs
.add("-Xcontext-receivers")
}
}
}