ScreenShareTile
ScreenShareTile copied to clipboard
APK size exploded with v1.4.0
With version 1.4.0, size of the APK suddenly increased by factor 4 (from 4 to 16 MB). Did something go wrong, or was that intended?
I guess it is because the image processing lib changed to Ananas from https://github.com/npes87184/ScreenShareTile/commit/022f4cb94e3b76ac1e351dcd73d40f5bd38eb74f.
Although ScreenShareTile only enables small parts of features from Ananas, it provides many features like stickers, which may increase the size of APK.
OK, thanks! Just wanted to make sure that it was not due to some dependencies dragged in unintentionally. As I see you use proguard, you could try to counter that to a degree by letting it remove unused code if you wish (preferably without obfuscating – after all this is open source, so no reason to obfuscate and hide things):
postprocessing {
removeUnusedCode true
removeUnusedResources true // <--
obfuscate false
optimizeCode true
}
Thank you for your help, I will dig on it when I have free time :D