问题描述
在您创建一个之前,您将无法编辑此应用程序您声明敏感权限的不同版本
You will not be able to edit this application until you create a different version in which you declare sensitive permissions
最近,当我尝试更新应用程序时,我遇到了这个错误,但要么让我上传任何东西来纠正它,要么更改 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 或 app bundle,你必须加载一个库具有短信或通话权限.
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.
您会注意到警告已经消失,现在您可以上传新版本,我建议您不再拥有短信权限并进行相关更改.您必须在 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 信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!