glancedUp How may I make the Android export smaller. My game is really really simple but the export is 23MB. Can something be done to make it smaller?
arthur You can take a look at SConstruct file (starting from line 163, give or take). It has a bunch of configurations to remove unneeded libraries (like 3D, bullet, enet, ogg and so on). It would probably reduce the binary size.
Shin-NiL Yeah, you can compile the android module targeting for size optimization and disable features you don't use. Take a look at this for more details.