I have build an android application using multiple apk files. I have followed the rules ie, unique version code, same package name, signed with the same certificate key, same apk file name. Now in order to distinguish for different screen resolution, I have written following codes in manifest file:
For 240x320:
<compatible-screens >
<screen android:screenSize="small" android:screenDensity="ldpi"/>
</compatible-screen
For 320x480:
<compatible-screens >
<screen android:screenSize="normal" android:screenDensity="mdpi"/>
</compatible-screens>
For 480x800:
<compatible-screens >
<screen android:screenSize="normal" android:screenDensity="hdpi"/>
</compatible-screens>
For 720x1280:
<compatible-screens >
<screen android:screenSize="normal" android:screenDensity="xhdpi"/>
</compatible-screens>
Please let me know if there is something wrong in this. Because if I am uploading multiple apk in google play, now when the user will download this application the appropriate apk should get download automatically . For eg if user is downloading this app using Google Nexus, then apk of 720x1280 should get downloaded.
Thank you in advance