当前位置:   article > 正文

因 androidx.work:work-runtime 版本过低导致的闪退

因 androidx.work:work-runtime 版本过低导致的闪退

问题

今天在 BlackBox 盒子启动应用,在 Android13 上,启动使用 agp7 打出包又遇到了应用启动之后出现闪退,记录一下吧!

NewBlackbox

黑盒BlackBox,是一款虚拟引擎,可以在Android上克隆、运行虚拟应用,拥有免安装运行能力。黑盒可以掌控被运行的虚拟应用,做任何想做的事情。

在这里插入图片描述

在此之前我的应用 androidx.work:work-runtime:2.1.0 -> 2.7.0 版本是 2.1.0,升级到 2.7.0 问题不再复现了。

在这里插入图片描述

解决

    //fix: argeting S+ (version " + Build.VERSION_CODES.S
    //370                      + " and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE"
    //371                      + " be specified when creating a PendingIntent.\nStrongly consider"
    //372                      + " using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality"
    //373                      + " depends on the PendingIntent being mutable, e.g. if it needs to"
    //374                      + " be used with inline replies or bubbles.
    // 2.7.0   2.8.0
    configurations.all{
        resolutionStrategy.force 'androidx.work:work-runtime:2.7.0'
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/583364
推荐阅读
相关标签
  

闽ICP备14008679号