Dutch
04/27/2022, 5:06 PMimplementation(files("libs/B.aar"))
implementation(files("libs/A.jar"))
ksp(files("libs/C.jar"))
I'm getting the following error during kspDebugKotlin:
java.lang.NoClassDefFoundError: _*Class from module A*_
What am I doing wrong?
EDIT:
When adding A and B to KSP like so:
ksp(files("libs/C.jar", "libs/A.jar", "libs/B.aar")
It does find the class from module A. Now it is still missing a dependency which is used in A and my current project.
EDIT 2:
After adding every dependency with ksp() it is working now.Jiaxiang
04/29/2022, 9:28 PMfile()
, it sounds reasonable to me. Maybe you can use ksp(project(":C")
?