Can someone tell why is that happening and how to fix it.
e
ephemient
01/19/2023, 3:09 PM
AARs don't carry dependencies. you should instead publish to and consume from a Maven repository which will carry the dependency information as metadata.
👍 1
l
Landry Norris
01/19/2023, 3:33 PM
If the project is built in release mode, symbols can be obfuscated. Add the Keep annotation to the classes to keep if you control them, or add a proguard rule if not.
👍 1
k
Khan
01/19/2023, 4:19 PM
I have made it work using fat aar lib. It was the same issue as @ephemient mentioned. Thanks for the answers 🙂