what's the go to for shrinking app size for Androi...
# multiplatform
b
what's the go to for shrinking app size for Android, Desktop, iOS. Are our only options to minify apps for android, and there's no way to reduce app size for desktop or iOS?
m
If using Compose for iOS - it will include Skia graphics dependency
m
For desktop ProGuard is used automatically if you do a release build.
b
So I should just add the R8 and minify stuff for the Android side and then everything else should be shrunk automatically by default?
m
I am not even sure whether you have to add R8 for Android. At least I didn’t.
b
I see.