Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 에러
- WebView
- 의존성주입
- 안드로이드스튜디오
- image
- MVVM
- 안드로이드 스튜디오
- 유튜브
- coroutine
- 레트로핏
- Retrofit
- studio
- 코루틴
- dart
- RecyclerView
- 안스
- viewpager
- Github
- build
- ADB
- 깃헙
- GIT
- Android
- 웹뷰
- Gradle
- 스튜디오
- 코틀린
- error
- 안드로이드
- Kotlin
Archives
- Today
- Total
코딩하는 일용직 노동자
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. 본문
안드로이드
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
bacass 2022. 7. 7. 22:17targetSdk버전을 32로 바꾸니 못보던 에러메세지를 보게 되었습니다.
Caused by: java.lang.IllegalArgumentException: 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.
at android.app.PendingIntent.checkFlags(PendingIntent.java:382)
at android.app.PendingIntent.getBroadcastAsUser(PendingIntent.java:673)
at android.app.PendingIntent.getBroadcast(PendingIntent.java:660)
OS가 Android12 이고 targetSdk버전이 31인 이상인 경우 PendingIntent생성시 FLAG_IMMUTABLE 나 FLAG_MUTABLE 을 지정해줘야 합니다.
PendingIntent.FLAG_MUTABLE 는 변경 가능
PendingIntent.FLAG_IMMUTABLE 는 변경 불가능 입니다.
PendingIntent.getActivity(context, 0, i, PendingIntent.FLAG_MUTABLE);
PendingIntent.getActivity(context, 0, i, PendingIntent.FLAG_IMMUTABLE);
이렇게 해도 에러가 계속 발생한다면 app레벨 gradle에 다음과 같이 dependencies를 추가해주셔야 합니다.
implementation "androidx.work:work-runtime:2.7.1" // java
implementation "androidx.work:work-runtime-ktx:2.7.1" // kotlin
'안드로이드' 카테고리의 다른 글
aab파일 자동 네이밍 방법. (0) | 2022.07.16 |
---|---|
APK파일 자동 네이밍 방법. (0) | 2022.07.16 |
WebView를 사용한 고용량 이미지 표시 사례. (0) | 2022.05.27 |
Pages must fill the whole ViewPager2 (use match_parent) 에러 해결사례 (0) | 2022.05.17 |
Invoke-customs are only supported starting with Android O (--min-api 26) 에러 수정하기 (0) | 2022.04.20 |