apple_w
apple_w

Reputation: 51

Publish Multiple APK with different android version

Is it possible Publish 2 apk for different android version?

I using cordova to build to apps and I need to use crosswalk to build when android version below v4.4.

Higher than v4.4 android just use normal build.

Upvotes: 2

Views: 1576

Answers (1)

Bryan Herbst
Bryan Herbst

Reputation: 67209

Yes, you can publish multiple APKs to the Play Store.

Each APK must be signed with the same key and must use a different version code. The version that supports a higher minimum SDK version must have the higher version code.

By have two different APKs with differed minSdkVersions defined, users will receive whichever version has the highest support API level.

For full documentation regarding this feature, read the Multiple APK Support documentation.

Upvotes: 4

Related Questions