android– 为什么我收到警告 – 此应用程序不符合Google Play权限政策,即使我的最新版本不需要这些权限?

android– 为什么我收到警告 – 此应用程序不符合Google Play权限政策,即使我的最新版本不需要这些权限?,第1张

概述它显示了这条消息ThisappdoesnotmeettheGooglePlaypermissionspolicyrelatingtotheuseofSMSorCALL_LOG.YoumustfixthisbeforeMarch9.2019oryourappwillberemovedfromGooglePlay.Note:ifyouhaverecentlymadeachange,itcantakeupt

它显示了这条消息

This app does not meet the Google Play permissions policy relating to the use of SMS or CALL_LOG. You must fix this before march 9. 2019 or your app will be removed from Google Play. Note: if you have recently made a change, it can take up to 12 hours to update this message.

我之前版本的应用程序拥有此权限,并在被拒绝时申请例外我在2周前更新了应用程序并删除了此权限.但现在我得到了这个消息.

解决方法:

我在上一个应用版本上也收到了这个警告.

说明:您收到此警告是因为您以某种方式直接或间接使用了一些不符合Google Play权限策略的权限.

间接意味着,您在项目中使用的任何第三方库可能已经在使用这些权限.当您构建项目时,它将所有Manifest文件合并到一个Merged Manifest文件中.这就是您收到此警告的原因,因为您的最终清单具有任何这些权限.

解决方案1:构建项目后,

>打开项目的AndroidManifest文件.
>打开底部的Merged Manifest选项卡.
>搜索任何这些权限. (示例 – READ_SMS)
>如果你有任何,现在是时候删除它们了.检查示例

示例:如果您在Merged Manifest文件中看到READ_SMS权限,那么现在打开项目的AndroIDManifest文件并添加下面写的行以从项目中删除该权限 –

<uses-permission androID:name="androID.permission.READ_SMS" tools:node="remove" />

在AndroIDManifest文件中添加上述权限行,就是这样.它将从Merged Manifest文件中删除Permission,您的问题将得到解决.

AndroIDManifest文件

<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:tools="http://schemas.androID.com/tools"    package="com.example.myapp">    <uses-permission androID:name="androID.permission.INTERNET" />    <uses-permission androID:name="androID.permission.READ_SMS" tools:node="remove" />    <application        androID:name=".MyApp"        androID:allowBackup="false"        androID:icon="@mipmap/ic_launcher"        androID:label="@string/app_name"        androID:supportsRtl="true"        androID:theme="@style/Apptheme"        tools:ignore="GoogleAppIndexingWarning"        tools:replace="androID:allowBackup">        <activity            androID:name=".SplashActivity"            androID:screenorIEntation="portrait"            androID:theme="@style/Fullscreentheme">            <intent-filter>                <action androID:name="androID.intent.action.MAIN" />                <category androID:name="androID.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application>

解决方案2:替换/删除使用这些权限的第三方库.

更新:

解决方案3:为安全起见,您可以在AndroIDManifest文件中添加这些行.

<uses-permission    androID:name="androID.permission.RECEIVE_SMS"    tools:node="remove" /><uses-permission    androID:name="androID.permission.READ_SMS"    tools:node="remove" /><uses-permission    androID:name="androID.permission.SEND_SMS"    tools:node="remove" /><uses-permission    androID:name="androID.permission.WRITE_SMS"    tools:node="remove" /><uses-permission    androID:name="androID.permission.RECEIVE_WAP_PUSH"    tools:node="remove" /><uses-permission    androID:name="androID.permission.RECEIVE_MMS"    tools:node="remove" /><uses-permission    androID:name="androID.permission.READ_CALL_LOG"    tools:node="remove" /><uses-permission    androID:name="androID.permission.WRITE_CALL_LOG"    tools:node="remove" /><uses-permission    androID:name="androID.permission.PROCESS_OUTGOING_CALLS"    tools:node="remove" />

如果使用的话,这些行将根据Permission Policy删除所有受限制的许可.

希望它会有所帮助.

总结

以上是内存溢出为你收集整理的android – 为什么我收到警告 – 此应用程序不符合Google Play权限政策,即使我的最新版本不需要这些权限?全部内容,希望文章能够帮你解决android – 为什么我收到警告 – 此应用程序不符合Google Play权限政策,即使我的最新版本不需要这些权限?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1100245.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存