DONSEE东信智能 - 身份证社保卡读卡智能终端应用服务商

eastcoms@qq.com
400-6722-705
首页 > 服务支持专区 > 产品支持 > 常见问题

身份证读卡器安卓SDK在安卓12版本targetSdkVersion=32报错解决

来源:www.eastcoms.com   标签:读卡器 安卓12   发布时间: 2023-7-14 15:52:04

之前的身份证读卡器安卓SDK版本V1.0.40在安卓12版本,targetSdkVersion=32的时候会出现以下错误:

安卓12版本targetSdkVersion=32报错

Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.

Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles.

解决方法:

1、将项目的targetSdkVersion由31改为30

2、如果不想改targetSdkVersion,那就在在创建PendingIntent的时候判断当前系统版本,根据不同系统版本创建带有不同flag的PendingIntent,具体代码实现如下:

按如下方式修改DonseeDervice.arr代码,更新至版本V1.0.41即可在安卓12版本使用。


DonseeDervice.arr

DonseeDervice.arr


if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) {

    mPendingIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ACTION_USB_PERMISSION),  PendingIntent.FLAG_IMMUTABLE);

}else {

    mPendingIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ACTION_USB_PERMISSION), 0);

}



 

 
QQ在线咨询