Android框架mqtt库无法兼容高版本android13的问题

最近使用mqtt库,测试的时候发现在Android12及以下正常,但在13上闪退,闪退日志如下

java.lang.IllegalArgumentException: com.yummo.xcar: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.

提示很明显是version 31版本在创建PendingIntent的时候需要做适配,于是全局搜索把适配代码加上,代码如下

PendingIntent pendingIntent;
                    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
                        pendingIntent = PendingIntent.getBroadcast(getApplication().getApplicationContext(), 0, activityIntent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT);
                    } else {
                        pendingIntent = PendingIntent.getBroadcast(getApplication().getApplicationContext(), 0, activityIntent, PendingIntent.FLAG_UPDATE_CURRENT);
                    }

加上之后还是报同样的错误,几经周折才发现mqtt库里也用到了PendingIntent且没有做适配,我所使用的mqtt版本如下:

api "org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.1.0"
api "org.eclipse.paho:org.eclipse.paho.android.service:1.1.1"

本想着去官方库里看下有没有最新的已经适配的库,去了官网才发现最后一个版本已停留在2017年,痛苦~,官网链接:mqtt-service,找了好久~好在后面找到一篇文章找到了替代方案:兼容方案,具体替换方式参考该链接吧,替换库的下载地址,替换完成后将旧的引用包删除并重新导入进行编译,结果又报了另外一个库找不到,于是我又根据日志添加了对应的依赖库

api 'com.jakewharton.timber:timber:4.7.1'

重新编译后终于可以了!!!

但是该库创建的mqttservice销毁再重建时会有数据库异常导致的闪退问题,需要注意,最后总算是解决了,网上关于mqtt适配高版本的文章太少了,希望能给遇到同样问题的朋友一点帮助

你可能感兴趣的:(android埋坑,android)