Skip to content

Instantly share code, notes, and snippets.

@SeongUgJung
Created February 20, 2021 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeongUgJung/7296fa6554fbf6867df1d730604fcd9a to your computer and use it in GitHub Desktop.
Save SeongUgJung/7296fa6554fbf6867df1d730604fcd9a to your computer and use it in GitHub Desktop.
android {
buildTypes {
getByName("debug") {
sourceSets {
getByName("main") {
java.srcDir(File("build/generated/ksp/debug/kotlin"))
}
}
}
getByName("release") {
sourceSets {
getByName("main") {
java.srcDir(File("build/generated/ksp/release/kotlin"))
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment