Reputation: 5462
I created an application which has different layout for phones and tablets. Can I add my app in two apk on Google Play one for Phones & one for Tablets? I found supports-screens in the documentation but not sure about that. I have to do this because my app is dealing with images and if I merge images for both (phones & tablets) then size of app is very large.
Upvotes: 3
Views: 1255
Reputation: 75635
Yes, you can have single app with multiple APKs. See Multiple APK support, but unless you really see the difference there like completely different assets which bloats the whole app, then sticking to single binary app helps maintaining it further
Upvotes: 0
Reputation: 1579
Yes, you can target apks to specific device configurations. Here's the documentation on it: http://developer.android.com/guide/google/play/publishing/multiple-apks.html
Upvotes: 2
Reputation: 649
Yes this is possible. I'd recommend to set the name as: "..." for phone "... HD" for tablets
I'd also include a link in both descriptions, referring to eachother (so the phone app refers to the HD version and visa versa).
Also, i'd recommend to read this: http://developer.android.com/guide/google/play/publishing/multiple-apks.html
Upvotes: 0