https://kotlinlang.org logo
Title
s

spierce7

03/11/2022, 9:52 PM
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

Javier

03/11/2022, 9:56 PM
KMP?
s

spierce7

03/11/2022, 10:00 PM
nope - just Android
a

Albert Chang

03/12/2022, 2:31 AM
Are you stripping out
META-INF/<module name>.kotlin_module
from the aar? That file is needed to access top-level members.
s

spierce7

03/12/2022, 2:34 AM
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.