权限政策将限制允许哪些应用程序请求呼叫日志和SMS权限 [英] Permissions policy that will limit which apps are allowed to request Call Log and SMS permissions

查看:77
本文介绍了权限政策将限制允许哪些应用程序请求呼叫日志和SMS权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

今天我收到了这样的邮件,根据此消息,我无法再在我的应用中使用RECEIVE_SMS READ_SMS.在我的应用中,我正在使用自动读取OTP.有什么解决办法吗?

Today I got a mail like this, according to this I’m not able to use RECEIVE_SMS READ_SMS anymore in my app. In my app I’m using auto read OTP. Is there any solution for this?

您好Google Play开发者

Hello Google Play Developer,

10月,我们宣布了对权限"政策的更新,该政策将 限制允许哪些应用程序请求呼叫日志和SMS权限. 此政策将影响您的一个或多个应用.

In October, we announced updates to our Permissions policy that will limit which apps are allowed to request Call Log and SMS permissions. This policy will impact one or more of your apps.

仅一个已被选作用户默认应用程序的应用程序 通话或短信,或者其核心功能已获批准 例外用例之一,将能够请求访问呼叫" 日志或短信权限.

Only an app that has been selected as a user's default app for making calls or text messages, or whose core functionality is approved for one of the exception use cases, will be able to request access to Call Log or SMS permissions.

需要采取行动

以下,我们列出了您目录中不符合以下条件的应用 权限请求的要求.请删除所有不允许的内容或 应用清单中未使用的权限(在下面指定),进行迁移 另一种实施方式(例如,大多数情况下,SMS Retriever API OTP验证的案例),或评估您的应用是否符合

Below, we've listed apps from your catalog which do not meet the requirements for permission requests. Please remove any disallowed or unused permissions from your app's manifest (specified below), migrate to an alternative implementation (e.g. SMS Retriever API for most cases of OTP verification), or evaluate if your app qualifies for an exception.

下一步

通读权限"政策和Play控制台帮助中心 文章,其中描述了预期的用途,异常,无效的用途,以及 使用呼叫记录或SMS的替代实施选项 权限.

Read through the Permissions policy and the Play Console Help Center article, which describes intended uses, exceptions, invalid uses, and alternative implementation options for usage of Call Log or SMS permissions.

更新您的应用或提交权限声明表.

Update your app or submit a Permissions Declaration Form.

选项1)如果您的应用不需要访问通话记录或短信 权限:通过删除以下内容来对您的应用进行适当的更改: 从您的应用清单中指定的权限,或迁移到 在2019年1月9日之前可用的替代实施方式.

Option 1) If your app does not require access to Call Log or SMS permissions: Make appropriate changes to your app by removing the specified permissions from your app's manifest or migrating to an available alternative implementation by January 9, 2019.

选项2)如果您的应用是默认处理程序,或者您认为自己的应用是 符合例外条件:请通过 权限声明表.您无需实施APK 更改以便提交表格.收到的报关单 2019年1月9日可能有更多时间进行更改 使他们的应用程序合规.如果您最近提交了 权限声明表,我们正在审核您的 信息,并将回复您的申请.

Option 2) If your app is a default handler or you believe your app qualifies for an exception: Please submit a request via the Permissions Declaration Form. You do not need to have implemented APK changes in order to submit a form. Declaration Forms received by January 9, 2019 may be eligible for additional time to make changes to bring their app(s) into compliance. If you have recently submitted a Permissions Declaration Form, we are in the process of reviewing your information and will respond to your application.

确保您的应用与其他所有应用都兼容 开发者计划政策,以防止您的应用被删除.

Make sure that your app is otherwise compliant with all other Developer Program Policies to prevent your app from being removed.

或者,您可以选择取消发布应用.

Alternatively, you can choose to unpublish the app.

我们的开发者计划政策旨在提供安全且 在为用户提供安全体验的同时,还为开发人员提供了工具 他们需要成功.这就是为什么我们将删除违反我们的应用程序的原因 政策.如果屡次或严重违反我们的政策, 我们也可能终止您的开发者帐户和任何相关的开发者 帐户.

Our Developer Program Policies are designed to provide a safe and secure experience for our users while also giving developers the tools they need to succeed. That is why we will remove apps that violate our policies. In cases of repeated or serious violations of our policies, we may also terminate your developer account and any related developer accounts.

我们感谢您在与我们合作时与我们合作的意愿 改进以更好地保护用户.

We appreciate your willingness to partner with us as we make these improvements to better protect users.

受影响的应用

下面列出了受影响的应用和权限,最多20个;如果你有 其他应用,请确保它们也符合 权限政策.

Affected apps and permissions are listed below, up to 20; if you have additional apps, please ensure that they are also compliant with the Permissions policy.

推荐答案

如果您的应用未使用这些权限,而第三方库使用了某些此类权限,请使用下面的代码来避免这些权限. 这可能会影响库的平滑运行

If your app not using those permissions and the third-party library using some kind of those permission use below code for avoiding those permissions. it may affect those library smooth functioning

 <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" />

否则您可以在答案中使用替代方法,例如

or else you can use alternate methods in the answers, example

SMS检索器Api

这篇关于权限政策将限制允许哪些应用程序请求呼叫日志和SMS权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆