Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Store : How to upload more APKs to support different CPU architectures

Tags:

I want to Support different CPU architectures with each APK (such as for ARM, x86, and MIPS). How do I upload more APKs, I've switched to advanced mode, but the Upload new APK to Alpha button replaces the previous APK.

Attached is how my console looks in the APK section.

enter image description here

Will appreciate your help.

For Reference, Here's my gradle :

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"

    defaultConfig {
        applicationId "app_id_here"
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        jackOptions {
            enabled false
            additionalParameters('jack.incremental': 'true')
        }
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        javaMaxHeapSize '4096m'
    }

    splits {
        abi {
            enable true
            reset()
            include 'x86', 'x86_64', 'arm64-v8a', 'armeabi-v7a', 'armeabi'
            universalApk false
        }
    }
} 
like image 928
Relm Avatar asked Jan 20 '17 08:01

Relm


People also ask

Can I upload AAB file to play store?

Download your Android App Bundle (AAB) fileAn AAB file cannot be installed on an Android device. If you want to download and install your project, please read the Download docs. You will see a dialog asking you to enter your email address. After you click Send, you will receive your AAB file as an email.

What are split APKs?

APK splitting allows an app to be split across multiple APK files, for example one might contain the main code while another contains visual resources that are optimised for a given screen resolution, or native libraries that are compiled for a given architecture.

What is the daily limit of uploading apps on the play store?

You can upload up to 15 private apps per day. Sign in to your Google Admin console. Sign in using your administrator account (does not end in @gmail.com). Web and mobile apps.


1 Answers

Check out this Article. Publishing multiple APKs on Google play https://blog.mindorks.com/publishing-multiple-apks-on-google-play-b06bb9078aae#.qqr2yqjfv

Navigate to the “APK” section of your app and hit “Switch to advanced mode” in the top right.

There You’ll notice the “upload new APK to production” button moving down and extra actions coming up on screen.

Now in advanced mode the console accepts multiple APKs on the same track, just hit the “upload new APK” button and follow the process one by one as in simple mode and click “save draft”.The console will show a relatively less number of compatible devices but don’t worry, because it shows devices compatible to only that specific ABI.

like image 96
Mayur Gangurde Avatar answered Sep 24 '22 11:09

Mayur Gangurde