Make generated code visible
This commit is contained in:
parent
7bbadf3765
commit
0c511b1092
4 changed files with 20 additions and 3 deletions
|
|
@ -30,6 +30,14 @@ plugins {
|
|||
android {
|
||||
androidConfig(project)
|
||||
composeConfig()
|
||||
// Waiting for https://github.com/google/ksp/issues/37
|
||||
libraryVariants.all {
|
||||
kotlin.sourceSets {
|
||||
getByName(name) {
|
||||
kotlin.srcDir("build/generated/ksp/$name/kotlin")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,14 @@ plugins {
|
|||
|
||||
android {
|
||||
androidConfig(project)
|
||||
// Waiting for https://github.com/google/ksp/issues/37
|
||||
libraryVariants.all {
|
||||
kotlin.sourceSets {
|
||||
getByName(name) {
|
||||
kotlin.srcDir("build/generated/ksp/$name/kotlin")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue