Remove ksp source set workaround (#515)

This is no longer needed
This commit is contained in:
Chris Smith
2023-06-02 14:09:05 +01:00
committed by GitHub
parent 0009409a3b
commit 61eccdf727
3 changed files with 0 additions and 25 deletions

View File

@@ -142,15 +142,6 @@ android {
jvmTarget = "17"
}
// Waiting for https://github.com/google/ksp/issues/37
applicationVariants.all {
kotlin.sourceSets {
getByName(name) {
kotlin.srcDir("build/generated/ksp/$name/kotlin")
}
}
}
buildFeatures {
buildConfig = true
}

View File

@@ -32,14 +32,6 @@ plugins {
android {
androidConfig(project)
composeConfig(libs)
// Waiting for https://github.com/google/ksp/issues/37
libraryVariants.all {
kotlin.sourceSets {
getByName(name) {
kotlin.srcDir("build/generated/ksp/$name/kotlin")
}
}
}
}
dependencies {

View File

@@ -29,14 +29,6 @@ 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 {