Android 14에서 암시적 인텐트 관련하여 변경사항이 있습니다.
Android 14를 타게팅하는 앱에게만 아래 내용이 적용됩니다.
- 암시적 인텐트로 Activity 등 Component를 실행하거나 이벤트를 전달할 때,
exported=true
로 설정된 Component에게만 전달됨. exported=false
로 설정된 Component를 실행하거나 이벤트를 전달할 때는 명시적 인텐트를 사용해야 함.- Mutable Pending Intent를 사용할 때, 명시적 인텐트를 사용하지 않으면 Exception이 발생함.
이 변경사항으로 발생하는 문제와 해결 방법을 알아보겠습니다.
1. 암시적 인텐트와 exported=false로 발생하는 Exception
Android 14를 타게팅하는 앱이, 암시적 인텐트로 exported=false인 Activity를 실행하려고 하면 Exception이 발생합니다.
예를 들어, 아래와 같이 exported=false
로 정의된 Activity가 있습니다.
<activity android:name=".AppActivity" android:exported="false">
<intent-filter>
<action android:name="com.example.action.APP_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
아래와 같은 암시적 인텐트로 이 Activity를 실행하려고 하면, Exception이 발생합니다.
val implicitIntent = Intent("com.example.action.APP_ACTION")
startActivity(implicitIntent)
에러 로그
04-09 10:21:52.241 7303 7303 E AndroidRuntime: Process: com.example.myapplication, PID: 7303
04-09 10:21:52.241 7303 7303 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.example.action.APP_ACTION }
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:2238)
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java:1877)
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java:5589)
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at androidx.fragment.app.FragmentActivity.startActivityForResult(FragmentActivity.java:676)
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java:5547)
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at androidx.fragment.app.FragmentActivity.startActivityForResult(FragmentActivity.java:663)
04-09 10:21:52.241 7303 7303 E AndroidRuntime: at android.app.Activity.startActivity(Activity.java:6045)
2. exported=true로 변경하여 문제 해결
암시적 인텐트를 사용해야 한다면, Activity의 exported 속성을 true로 변경하면 됩니다.
아래와 같이 Activity를 설정하면, 암시적 인텐트로 Exception을 발생시키지 않고 Activity를 실행시킬 수 있습니다.
<activity android:name=".AppActivity" android:exported="true">
<intent-filter>
<action android:name="com.example.action.APP_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
3. 명시적 인텐트로 변경하여 문제 해결
외부에 공개하면 안되는 것이라서 exported를 false로 설정해야 한다면, 명시적 인텐트로 실행하면 됩니다.
아래와 같이 명시적 인텐트로 실행하면 Exception 발생 없이 Activity가 실행됩니다.
val explicitIntent = Intent("com.example.action.APP_ACTION")
explicitIntent.setPackage("com.example.myapplication")
startActivity(explicitIntent)
Loading script...
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력