Hi, I am trying to develop a library module that o...
# android
j
Hi, I am trying to develop a library module that only compiles with the androidx fragment library using
compileOnly
as the actual runtime dependency will be provided by a user of the library. This works fine for normal compiling, but compiling the android test class path throws an IR error:
Copy code
No such enum entry LIBRARY_GROUP_PREFIX
I have tried adding the annotations as an
implementation
and
testCompileOnly
and
androidTestImplementation
dependency but I can't get passed that IR error. Does anyone have a workaround or solution? Thanks!
147 Views