我的应用因违反权限政策而被Play商店拒绝

时间:2019-05-30 05:22:35

标签: android google-play

我的应用因违反权限政策而被Play商店拒绝。 但是在我的android清单中,我未授予任何有关短信的许可,或在此处致电是我的清单:

  <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" 
        android:maxSdkVersion="22" ><!--Calldorado XML analyzer inserted the attribute android:maxSdkVersion="22" in order to make the code compatible with the Google Play store-->
    </uses-permission>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:remove="android:maxSdkVersion" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" 
        android:maxSdkVersion="22" ><!--Calldorado XML analyzer inserted the attribute android:maxSdkVersion="22" in order to make the code compatible with the Google Play store-->
    </uses-permission>
    <uses-permission android:name="android.permission.VIBRATE" />

    <!-- remove location.gps feature if not using permission ACCESS_FINE_LOCATION -->
    <uses-feature android:name="android.hardware.location.gps" />
    <uses-feature android:name="android.hardware.touchscreen" android:required="false" />

我从Google收到了这封电子邮件

问题:违反权限政策 在审核您的应用后,我们发现由于以下原因,该用户不符合使用请求的权限的资格:  根据我们的评论,我们发现您的应用程序所表达的用户体验与声明的核心功能“默认电话”处理程序(以及默认处理程序使用的其他任何核心功能)不匹配。请从您的应用中删除这些权限。 默认处理程序功能已在声明表单中列出,但您的应用似乎没有默认处理程序功能。请提交修改后的申报表。  我们无法验证您的隐私权政策。如果您的应用请求权限并处理敏感的用户数据,则需要在Play控制台的指定字段和应用本身中发布隐私权政策。您的隐私权政策必须全面披露您的应用如何收集,使用和共享用户数据。请添加或更新您的隐私政策,以符合开发者计划政策。

我正在使用calldorado sdk在我的应用程序中做广告,它包含通话权限,所以我现在该怎么办?

0 个答案:

没有答案