Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while uploading apk on playstore

getting following error while uploading apk on playstore, please help.

deactivation of this apk will result into your app being available for new installs on fewer types of devices.

Thank you.

like image 555
mdDroid Avatar asked Mar 29 '17 15:03

mdDroid


People also ask

Why does Google Play Store keep saying error?

Google Play Store Errors typically contain random numbers and are generated when you try to download apps from the Google Play Store. These errors might be due to Google Play Store updates, Google cache issues, Google Play Store stored data issues, or Google account issues.

Can I still upload APK to Google Play?

Upload App Bundles or APK To Google Play This is how you do it: Navigate to the 'Release Management' and then 'App Release' tab in the menu. After this, you will be asked to choose any one type of release from four options- internal test, close test, production release, and an open test.

Why Cannot install apps in Play store?

Check your storage space If your device is low on space, it can stop apps from downloading and installing. Your device may be low on space if: You get a notification about storage space. There's less than 1 GB available on your device.


1 Answers

This message is a warning which says that your new apk will be available for a fewer number of devices.

The reason is, you made changes which probably affected AndroidManifest.xml. You could add new permissions, feature, screen support etc. So this message will be helpful when you added one of them by mistake and you would make apk available for fewer people (who would like to do that by mistake?).

Go through your code changes (comparing to the previous build) to check what exactly makes this limitation happened.

In most of the cases it's totally fine, because it's just natural that during the development process, you request more regarding system or device and as a result, it will run on a smaller number of devices.

You can ignore this warning and go ahead with publishing if you're aware what you're doing.

like image 181
klimat Avatar answered Sep 28 '22 04:09

klimat