We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
应用集成AndroidUtilCode后,无法提交Google Play审核,Google Play提示如下: “软件包安装请求权限”声明不完整 所有使用 REQUEST_INSTALL_PACKAGES 权限的开发者都必须填写此声明,否则应从其应用的清单中移除该权限
从编译后的文件来看,是AndroidUtilCode用到了这个权限,应该怎么过滤掉这个以便提交Google Play审核呢?
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
AndroidManifest.xml中已经添加了<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" tools:node="remove" /> ,但是还是同样的问题,无法提交Google Play审核,Google Play提示如下: “软件包安装请求权限”声明不完整 所有使用 REQUEST_INSTALL_PACKAGES 权限的开发者都必须填写此声明,否则应从其应用的清单中移除该权限
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" tools:node="remove" />
AndroidManifest.xml中已经添加了<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" tools:node="remove" /> ,但是还是同样的问题,无法提交Google Play审核,Google Play提示如下: “软件包安装请求权限”声明不完整 所有使用 REQUEST_INSTALL_PACKAGES 权限的开发者都必须填写此声明,否则应从其应用的清单中移除该权限 你先去查看一下打的包是否真的含有request_install_package这个权限
com.blankj:utilcodex:1.31.1 没有发现这个权限呢,REQUEST_INSTALL_PACKAGES ,你确定是由这个库合并进来的 ?
Blankj
No branches or pull requests
描述需求
应用集成AndroidUtilCode后,无法提交Google Play审核,Google Play提示如下:
“软件包安装请求权限”声明不完整
所有使用 REQUEST_INSTALL_PACKAGES 权限的开发者都必须填写此声明,否则应从其应用的清单中移除该权限
从编译后的文件来看,是AndroidUtilCode用到了这个权限,应该怎么过滤掉这个以便提交Google Play审核呢?
The text was updated successfully, but these errors were encountered: