android NFC pendingintent error
-
[안드로이드 kotlin] Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.안드로이드(kotlin)/에러 관련 2022. 8. 30. 14:19
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. NFC 기능을 추가한 후 기기 테스트중에 위와같은 에러가 나타났습니다. 안드로이드 11버전까지는 이상없이 잘 되었었는데 안드로이드 12 버전기기부터 에러가 나타나네요. 문제가 나타난 부분은 NFC 에 추가한 내용중 PendingIntent 때문이었습니다. nfcPendingIntent = PendingIntent.getActivity( this, 0, Intent(this, javaClass).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0..