Android React本机应用程序要求在Android/App/Src/Main/AndroidManifest.xml中获得未定义的权限

发布于 2025-02-10 17:41:30 字数 2922 浏览 2 评论 0原文

我有一个Android构建的React Native应用程序,该应用已上传到Google Play控制台。

我在应用程序的构建中遇到问题,要求比我在应用程序中定义更多的权限android/app/src/main/androidmanifest.xml

我对query_all_all_packages 代码>尤其是Google说我的应用不遵守的权限。

我的应用程序android/app/src/main/androidmanifest.xml在我的项目中定义的权限app/src/main/androidManifest.xml

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING"/>

然后,我在我的项目中对query_all_all_packages进行了全局搜索,并发现它是在以下几个地方定义:

android/app/build/intermediates/merged_manifests/release/AndroidManifest.xml



  <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
    <uses-permission android:name="android.permission.USE_BIOMETRIC" />
    <uses-permission android:name="android.permission.USE_FINGERPRINT" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <!-- Required to access Google Play Licensing -->
    <uses-permission android:name="com.android.vending.CHECK_LICENSE" /> <!-- Required by older versions of Google Play services to create IID tokens -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" />

android/app/build/intermediates/bundle_manifest/repares/bundle-manifest/androidmanifest.xml

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <!-- 
Required to access Google Play Licensing -->
<uses-permission android:name="com.android.vending.CHECK_LICENSE" /> <!-- Required by 
older versions of Google Play services to create IID tokens -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission 
android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" 
/>

这些文件是什么以及为什么它们需要在我的内部设置的权限, android/app/src/main/androidmanifest.xml

我将如何删除这些文件请求的权限,例如android.permision.query_all_all_packages

非常感谢。

最好的, 马特

I have a Android build of a react native app that I have uploaded to the Google Play console.

I am having issues with the build of the app requesting more permissions than I have defined inside my apps android/app/src/main/AndroidManifest.xml

I am having troubles with the QUERY_ALL_PACKAGES permission in particular which Google says my app is not compliant with.

The permissions defined inside my app android/app/src/main/AndroidManifest.xml are the below:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING"/>

I then did a global search for QUERY_ALL_PACKAGES in my project and found it was defined in several places like:

android/app/build/intermediates/merged_manifests/release/AndroidManifest.xml



  <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
    <uses-permission android:name="android.permission.USE_BIOMETRIC" />
    <uses-permission android:name="android.permission.USE_FINGERPRINT" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <!-- Required to access Google Play Licensing -->
    <uses-permission android:name="com.android.vending.CHECK_LICENSE" /> <!-- Required by older versions of Google Play services to create IID tokens -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" />

and the android/app/build/intermediates/bundle_manifest/release/bundle-manifest/AndroidManifest.xml

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <!-- 
Required to access Google Play Licensing -->
<uses-permission android:name="com.android.vending.CHECK_LICENSE" /> <!-- Required by 
older versions of Google Play services to create IID tokens -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission 
android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" 
/>

What are these files and why are they requiring permissions I have not set inside my android/app/src/main/AndroidManifest.xml

How would I go about removing a permission requested by these files like the android.permission.QUERY_ALL_PACKAGES

Any help or guidance would be greatly appreciated.

Best,
Matt

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

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

发布评论

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

评论(2

风月客 2025-02-17 17:41:30

默认情况下,将一些权限添加到您的Android APK中。要删除它们,只需在Android/app/src/main/androidmanifest.xml文件中添加几行,

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myappid"
+   xmlns:tools="http://schemas.android.com/tools"
    >

+   <uses-permission tools:node="remove" android:name="android.permission.QUERY_ALL_PACKAGES" />
.....
</manifest>

您还可以在官方文档中找到参考: https://reaectnative.dev/docs/0.62/removing-default-permissions

By default, some permissions are added to your Android APK. To remove them, just add few lines in android/app/src/main/AndroidManifest.xml file

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myappid"
+   xmlns:tools="http://schemas.android.com/tools"
    >

+   <uses-permission tools:node="remove" android:name="android.permission.QUERY_ALL_PACKAGES" />
.....
</manifest>

Also you can find the reference here in the official documentation : https://reactnative.dev/docs/0.62/removing-default-permissions

肤浅与狂妄 2025-02-17 17:41:30

除了提供其他答案之外,我建议您在项目中的哪个库中尝试添加该许可并删除它。该权限应很少使用,因为它能够获取用户安装的每个应用程序的包装名称。这不是推荐的做法。

I would recommend in addition to the other answer provided find out which library in your project is trying to add that permission and remove it. That permissions should be rarely used as it's able to grab the package names of every app the user has installed. It's not a recommended practise.

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