本文介绍了我从Play控制台收到以下错误,我无法编辑版本或Google Play信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最近,当我尝试更新应用程序时,出现了此错误,但要么让我上传任何东西来纠正它,要么更改Play商店信息.我到处都在搜索,甚至联系了Google,但他们还没有回答我.

Recently when I trying to update an application I got this error, but either let me upload anything to remedy it, or change the Play store info. I've been searching everywhere and I even contacted Google but they have not answered me yet.

该应用程序称为Enviaje,可以管理旅行者.

The app is called Enviaje and manage travelers.

当我尝试编辑版本时会显示以下消息

The following messages are show when I try to edit the version

很抱歉,如果是西班牙文,我是墨西哥人,

Sorry if it is in spanish, I`m from Mexico,

这些是我清单中的权限

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

我认为该错误是由我之前拥有的SMS权限引起的,但是我必须通过新的Google Play政策将其删除

I think that the error is caused by the SMS permissions that I had before but that I had to eliminate them by the new Google Play policies

<uses-permission android:name="android.permission.READ_SMS"/>

我试图与Google支持人员联系,但我还没有答复.

I tried to contact Google´s supporst but I they haven´t answered yet.

推荐答案

我解决了这个问题,您首先要做的是创建一个新版本,但必须上传其中一个库,而不是上传新的APK或应用捆绑包拥有短信或通话权限的人.

I solved it, what you must do first is to create a new version but instead of uploading a new apk or app bundle, you must load one of the library that has SMS or call permissions.

然后在下面,您将看到服务声明的形式,根据您的情况填写它,然后查看版本.早期版本的运行方式不允许您启动.

Then below you will see the form of declaration of services, you fill it according to your situation, and you go to review the version. How is a previous version will not allow you to launch.

您将注意到警告已消失,现在您可以上传新版本,我建议您不再具有SMS权限并进行相关更改.如果没有,您必须在3月9日之前将其删除,以便Google Play可以像这样删除您的Play商店应用.

You will notice that the warning has disappeared and now you can upload a new version, I recommend that you no longer have the SMS permissions and have made the relevant changes. You have until March 9 to remove them if it is not so Google Play can delete your Play Store application just like that.

这篇关于我从Play控制台收到以下错误,我无法编辑版本或Google Play信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 01:41