Is there something special that has to be done to ...
# compose
s
Is there something special that has to be done to release a compose aar library? We’ve done that privately, but none of the compose functions can be accessed / found. We just end up with build errors.
j
KMP?
s
nope - just Android
a
Are you stripping out
META-INF/<module name>.kotlin_module
from the aar? That file is needed to access top-level members.
s
Almost definitely that’s the problem! Thank you!
👍 1
Thank you again. We were stripping out all the META-INF. It’s only caused us problems in the past, and so I guess someone got overzealous with a catch all wildcard.