应用由于Google许可政策而被Google Play商店拒绝

时间:2019-08-21 17:20:05

标签: android google-play-services

由于以下原因,我们的应用仍被拒绝。

Based on our review, we found your app’s expressed user experience 
did not match your declared core functionality Default SMS handler (and 
any other core functionality usage while default handler). Please 
remove these permissions from your app.

Default handler capability was listed on your declaration form, but 
your app does not appear to have default handler capability. Please 
submit a revised declaration form.

Your app needs to use runtime permissions for us to complete the 
review. Please update your app to target API level 26 or above. If you 
have APKs in different tracks of the app releases section of your Play 
Console, please deactivate non-compliant APKs before submitting your 
app again. For additional guidance, please review the documentation on 
how to request app permissions

我们没有使用默认SMS处理程序中包含的任何权限。

其他曲目上没有任何APK。

我们的目标Api版本是28,但拒绝邮件说应该是26或更高版本。

清单

<uses-permission android:name="android.permission.SEND_SMS" tools:node="remove"/>
<uses-permission android:name="android.permission.READ_SMS" tools:node="remove"/>
<uses-permission android:name="android.permission.RECEIVE_SMS" tools:node="remove"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" tools:node="remove"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>

1 个答案:

答案 0 :(得分:2)

这是我们解决问题的方式。

出了什么问题

每次我们将新APK上传到正式版时,应用都被拒绝 甚至认为它没有使用任何与SMS相关的权限。

原因:

Beta发行版中的APK非常旧。 具有SMS相关权限。

为什么我们无法更早解决该问题:

测试版曲目在Google Play控制台中不可见, 因为Alpha(开放测试轨道)中有APK。 (一次只能将Alpha或Beta作为公开测试轨道运行。)

解决方案:

  1. 我们将Alpha跟踪更改为“封闭测试”跟踪。
  2. 在所有曲目(内部测试,测试版和正式版)中上传了最新的APK。

宾果游戏!

该应用程序现已上线!

参考:

https://proandroiddev.com/dear-googles-permissions-declaration-form-can-we-break-up-85bc6b62f690

Playstore prompts to 'Declare sensitive permissions'

Receive_SMS Permission issue