Txispas
Txispas

Reputation: 159

same app on google play with different api level

I have develop an app from api 11 so Honeycomb, ICS and jelly beam works fine. I decided to do this because many new methods are deprecated and the visual appearance is better since ICS. (it is already working on google play).

But now I decide to develop the app for Gingerbeard, so I need help to think on the shortest way to do it.

Actually the app is define to:

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="15"/>

Upvotes: 0

Views: 195

Answers (2)

Hartok
Hartok

Reputation: 2137

If you really want to publish Multiple APK, here's how to do it: Creating Multiple APKs for Different API Levels

However, I'm not sure its the best solution for you. You can keep a single APK, and just add custom layouts and drawables in res/drawable-vX and res/layout-vX.

Upvotes: 0

Marcelo
Marcelo

Reputation: 1501

What you are looking for is Multiple APK Support.

Answering your questions:

1 - Yes, the Google Play filters will show the correct APK for each device based on the sdkVersion.

2 - Not only you NEED to use the same package name, there are other rules you have to follow.

Upvotes: 1

Related Questions