uni-app 使用Hbuilder 打包 google play应用,上架后提示Implicit PendingIntent 问题

uni-app 使用Hbuilder 打包 google play应用,上架后提示Implicit PendingIntent 问题

使用Hbuilder开发工具并选择uniapp模板后,使用云端打包(google play渠道包).上架google play商店成功,但是被发邮件告知存在Implicit PendingIntent的问题.

图片

9 回复

请使用HX3.1.20+版本重新云打包 并上架

更多关于uni-app 使用Hbuilder 打包 google play应用,上架后提示Implicit PendingIntent 问题的实战教程也可以访问 https://www.itying.com/category-93-b0.html


有解决吗

你也遇到相同的问题了吗

回复 8***@qq.com: 对啊,就是最近出现这问题

回复 zyiyuan: 请问你有没有试过用HX3.1.20+版本进行云打包来解决这个问题呢?

回复 8***@qq.com: 解决了

HX3.1.22已修复

针对uni-app在Google Play上架后遇到的Implicit PendingIntent警告,这是由于Android 12(API级别31)对PendingIntent的隐式调用限制导致的。以下是具体解决方案:

1. 配置manifest.json文件 在uni-app项目的manifest.json中配置符合Android 12要求的PendingIntent参数:

{
  "app-plus": {
    "android": {
      "pendingIntentFlag": "mutabilityFlag"
    }
  }
}
回到顶部