如何从华为广告套件中删除权限

发布于 2025-01-29 17:48:10 字数 82 浏览 3 评论 0 原文

我们发现AD套件中还有许多额外的权限(我们的应用程序未使用)。有人请让我们知道他们是否能够被删除?通常,用户对权限非常敏感,尤其是因为应用功能不需要。

we found there are many additional permissions(not used by our app) in the ad kit. Any one please let us know if they are able to be removed? Generally users are very sensitive to permissions, especially as they are not required for the app functionalities.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟沫凡尘 2025-02-05 17:48:11

如果您的应用不需要任何其他权限,请添加与AndroidManifest.xml文件中的以下代码以删除权限:

<manifest ... xmlns:tools="http://schemas.android.com/tools">
    ...

    <uses-permission android:name="android.permission.INTERNET" tools:node="remove" />
    ...

</manifest>

有关更多信息:有关更多信息,请参阅SDK数据安全性的此链接

If your app does not require any of the additional permissions, add the code similar to the following in the AndroidManifest.xml file to remove the permission:

<manifest ... xmlns:tools="http://schemas.android.com/tools">
    ...

    <uses-permission android:name="android.permission.INTERNET" tools:node="remove" />
    ...

</manifest>

For more information please refer this link of SDK Data Security
https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/publisher-service-personal-data-0000001050066921#section8547110181017

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文