小编pri*_*ria的帖子

在引入新的Google政策后,在Google Play商店更新应用时出错

我试图在Play商店上传我的应用程序的新版本,并在上传时收到以下错误: -

You can't edit this app until you create a new app release declaring sensitive permissions
Run Code Online (Sandbox Code Playgroud)

我已尝试删除Google限制最新政策的CALL_PHONE权限,而我的应用不包含任何不适应的数据.但仍然得到同样的错误.

如果有人遇到同样的问题.请帮我解决.

提前致谢!!

android google-play

10
推荐指数
3
解决办法
3113
查看次数

在项目“app”中,已解析的 Google Play 服务库依赖项依赖于另一个确切版本(例如“[11.0.4]”)

在我的项目中,我使用了完整的播放服务依赖项,例如:-

implementation 'com.google.android.gms:play-services:12.0.1'
Run Code Online (Sandbox Code Playgroud)

但是,我只需要地图和位置依赖项。并且还需要更新 PlaceAutoComplete。为此,我添加了最新的地图、位置和最新的地点依赖项,并删除了完整的播放服务库。当我尝试删除播放服务库时,出现此错误:-

In project 'app' a resolved Google Play services library dependency 
depends on another at an exact version (e.g. "[11.0.
4]", but isn't being resolved to that version. Behavior exhibited by 
the library will be unknown.

Dependency failing: com.google.firebase:firebase-storage:11.0.4 -> 
com.google.firebase:firebase-common@[11.0.4], but fir
ebase-common version was 16.0.3.

The following dependencies are project dependencies that are direct or 
have transitive dependencies that lead to the art
ifact with the issue.
-- Project 'app' depends onto com.google.firebase:firebase- 
appindexing@11.0.4 …
Run Code Online (Sandbox Code Playgroud)

android google-play-services android-gradle-plugin

5
推荐指数
1
解决办法
3345
查看次数