Reputation: 2537
I create two APK files from my Ionic Application for Different API Levels:
I Google a lot, but I did't get a proper answer. If any one upload different APK file for Different API Levels.
Please help me.
Upvotes: 1
Views: 725
Reputation: 1190
Read the documentation here https://developer.android.com/google/play/publishing/multiple-apks.html
and here https://developer.android.com/training/multiple-apks/api.html
Also ensure you upload your APKs in Advanced Mode
Upvotes: 0
Reputation: 10871
There is no way to use same VERSION_CODE
for multiple APKs in Google Play. To upload different APKs for different versions, set a lower version_code
for the lower API (Android 15+), and higher version_code
for higher API (Android 19+)
Upvotes: 1