Skip to content Skip to sidebar Skip to footer

Multiple Apk Support For Phone And Tablet Android

I have 2 APKs with same package name. I want to upload 1 apk to support for android phone only(min sdk version 8) and different apk to support for tablet only(min sdk version 11).

Solution 1:

You should support multiple screens in a single APK.

In your case, you can create layout-large and layout-xlarge.

Here you can read about: http://developer.android.com/guide/practices/screens_support.html

But, if you really want to publish two apks, here is the guide: http://developer.android.com/google/play/publishing/multiple-apks.html


Post a Comment for "Multiple Apk Support For Phone And Tablet Android"