Hello! is there something special I have to do in ...
# ksp
d
Hello! is there something special I have to do in order to create a KSP Android library? In my kotlin project I have 3 modules: 1. annotations module 2. processor module 3. sample android app I currently changed modules 1 and 2 to android libraries and now my processor isn't running. In my
build.gradle.kts
file of the sample app, I included my processor module with:
Copy code
ksp(project(path = ":roomex-processor", configuration = "default"))
Without the
configuration = "default"
part, I would get following error:
Copy code
Cannot choose between the following variants of project :ex-processor:
          - debugRuntimeElements
          - releaseRuntimeElements
        All of them match the consumer attributes:
Gradle file module 1: https://pastebin.com/31bjCres Gradle file module 2: https://pastebin.com/dAh063Bm Gradle file module 3: https://pastebin.com/K1bKbfzV