In my app i have too many images in res, so now the size of apk has become huge(70 MB). Is it possible to upload different apk files for MDPI, HDPI, XHDPI and XXHDPI phones. And will google play handls if a HDPI phone user is downloading my app, He should only get the HDPI version of my app. (And same for MDPI/XHDPI/XXHDPI.)
EDIT:
I have created 4 different APK files (for mdpi, hdpi, xhdpi, xxhdpi) successfully. I just added below code to manifest for all hdpi devices:
<compatible-screens>
<screen
android:screenDensity="hdpi"
android:screenSize="small" />
<screen
android:screenDensity="hdpi"
android:screenSize="large" />
<screen
android:screenDensity="hdpi"
android:screenSize="normal" />
<screen
android:screenDensity="hdpi"
android:screenSize="xlarge" />
</compatible-screens>
and same i did for xhdpi and xxhdpi.
Now the problem is, i am trying to upload my 4 apk files (of same app) on Google play. But i am unable to find such feature that allows me to upload 4 apks of same app. I only found the option by which i can upload one apk file.
Please guide me how to upload 4 different apks (each for mdpi, hdpi, xhdpi, xxhdpi) of same app on Google play.
Expansion APK features
over here becoz your apk size > 50MB – M D