Best practises how to reduce Android application install size & improve your app install conversation rate. Video can be found here youtu.be/ksgW-VHH-Qo
5. Why its problem?
Support low-end devices
Low space on device memory
How long time it will take to download app
I need it right now!!!
No Wi-Fi
Cellular data costs
6. Effect
Lower install conversion rate
Google Play Featuring problems
Google Play Security Checks problems
Problems with Instant App (4Mb limits)
30. Multiple APKs
android {
splits {
// Configures multiple APKs based on screen density
density {
enable true
// Specifies a list of screen densities Gradle
// should not create multiple APKs for
exclude "ldpi", "xxhdpi", "xxxhdpi"
// Specifies a list of compatible screen size
// settings for the manifest
compatibleScreens 'small', 'normal', 'large', 'xlarge'
}
}
}
35. Optimize images
Use image optimizer
Use WebP
Use vector graphics
Use multiple APKs for di鍖erent screen
Reuse similar images
Skip images for low densities
45. Resource Optimizations
Downloadable fonts
Remove unused resources
Reuse resources
Use recommended media formats
AAC for audio, H264 AVC for Video and etc.
Update strings over-the-air
56. External libraries usage
Remove unused Android Support Library parts
Try to dont add libraries for 1 class/method usage
Re鍖ection based libraries cant be properly optimised and
shrinked
Dont add debug libraries to a release builds
Facebook Stetho
LeakCanary
etc.
59. Multiple APKs for ABIs
android {
splits {
// Configures multiple APKs based on ABI
abi {
enable true
// Resets the list of ABIs
// that Gradle should create APKs for to none
reset()
// Specifies a list of ABIs
// that Gradle should create APKs for
include armeabi, armeabi-v7a, arm64-v8a
}
}
}
60. Code Optimisations
Use D8 compiler instead of DX
Code optimizations & shrinker tools
Be careful about using external libraries
Remove support of unused ABIs
Use multiple APKs for ABIs
66. Google Play Multiple APKs
OpenGL texture compression formats
Screen sizes and densities
Device feature sets
Platform versions
CPU architectures
Special APK for Android Go Edition
67. Google Play App Signing
More about App Signing youtu.be/5tdGAP927dk