I have written an app, and have uploaded it to internal testing on Google Play. Following Google's recommendation, this time I have gone with an Android Application Bundle instead of an APK.
When I download it from the Play store, it crashes immediately with java.lang.ClassNotFoundException
If I run the app through Android Studio as a Default APK, it works fine. If I run the app through Android Studio as "APK from app bundle", it also works fine.
My app has three modules. "app" is the main bit. I have a 3d engine module named bulletspeed. The missing class is from the bulletspeed module. I don't know if the third module is missing classes yet, as the program hasn't advanced that far before crashing.
Is there some sort of module setting that I am missing?
Thanks for any help!