Download multiple apk for different screens

I have two apk to download to the market. The first is for small and ordinary screens, the second for large and large screens.

If I put a small version on the market, it says: “Supported screens: small-xlarge” which is funny because my manifest says:

<supports-screens
    android:xlargeScreens="false"
    android:largeScreens="false"
    android:normalScreens="true"
    android:smallScreens="true">
</supports-screens>

If I download a larger version, I get what I expect: "Supported screens: large-large"

<supports-screens
    android:xlargeScreens="true"
    android:largeScreens="true"
    android:normalScreens="false"
    android:smallScreens="false" > 
</supports-screens>

(minSdkVersion = "8" targetSdkVersion = "9")

What am I doing wrong?

Rolling

EDIT: thanks to the document from the Ghost answer, I edited the manifest as follows:

small version (versionCode = "1001")

<supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true">
</supports-screens>

large version (versionCode = "2001"):

<supports-screens
    android:smallScreens="false"
    android:normalScreens="false"
    android:largeScreens="true"
    android:xlargeScreens="true"> 
</supports-screens>

, . , , . .

. Apk , , . , apks versionCodes , .

+5
1

apks?

, , , , -, - ..

0

All Articles