Google Play shows Unoptimized APK for Cordova App
Asked Answered
P

6

24

I was trying to publish my first Cordova app on Google Playstore. When I upload my release apk, it shows below warning and I cannot rollout the release.

Unoptimized APK

Warning:

This APK results in unused code and resources being sent to users. Your app could be smaller if you used the Android App Bundle. By not optimizing your app for device configurations, your app is larger to download and install on users’ devices than it needs to be. Larger apps see lower install success rates and take up storage on users’ devices.

Phosphine answered 8/5, 2019 at 0:15 Comment(1)
got any solution?Leafstalk
F
10

This is just a warning, and you can carry on uploading Cordova APKs. The Cordova team know about this, and you can follow their feature request to support Android App Bundle here

Footboard answered 9/5, 2019 at 8:23 Comment(0)
S
33

Well, it's just a warning I think. You could ignore it and rollout the release. The problem is that you haven't completed and provided enough information for important contents like store listing, content rate, pricing & distribution, and app release. When all of them show "green check", you could rollout the app.

Strobel answered 8/5, 2019 at 9:18 Comment(3)
so, you say, if these information is filled in, github.com/apache/cordova-android/issues/729 is no more an issue?Mousy
@Mousy Fill in all these information is just a way help you release your app immediately. It will skip App Bundle problem, but it don't solve completely the warning from Google.Coactive
I just tested this today and I totally second what @GiaÂnNgôTriệu has to say.Decorum
F
10

This is just a warning, and you can carry on uploading Cordova APKs. The Cordova team know about this, and you can follow their feature request to support Android App Bundle here

Footboard answered 9/5, 2019 at 8:23 Comment(0)
B
2

According to your mention problem, you can solve in cordova 9.0.0 by this way:
Go to your respective project directory, then go to platforms/android directory, then open cmd/terminal and write this command as gradlew bundle. After completing this process, It'll be generated app.aab. You can find the output into the outputs/bundle directory.

Biagi answered 5/11, 2019 at 19:41 Comment(0)
T
1

The disadvantage is what i saw is, that in the Play Store there will be a message " your app might not be optimized for your device" that is annoying, and this may force you to use the bundle and Google's signing. Because people might consider not to use your app, while in fact there is nothing wrong with it. Even if an app is just 12MB, Google is going to say that it is too big. But i don't know if it works corectly if you use the bundle method with apps not generated by Android Studio.

Turner answered 20/8, 2019 at 18:42 Comment(2)
Is this documented some place on the android documentation?Development
once you are in the developers console you'll get links to the info about it and else you can find it on developer.android.comTurner
L
0

The youtube video explains it well and with the appropriate solution.

Click Here for Youtube Video Explanation and solution

Leitao answered 11/6, 2019 at 5:20 Comment(1)
Please Take the Tour , and be sure with your answer link While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. how to answerRipleigh
A
0

This is a new policy from Google, now, instead of submitting the apk, we need to generate a bundle, and the Play Store itself will generate the app.

The steps are:

  1. Navigate to your platforms/android folder inside your project;
  2. Execute ./gradlew bundle;
  3. Sign the bundle as you would the apk;
  4. Send it to the Play Store;

More details here: https://medium.com/swlh/generating-an-android-app-bundle-from-your-ionic-app-without-android-studio-5bc3acaf4528

Arenaceous answered 16/4, 2020 at 16:17 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.