본문 바로가기
안드로이드(Android )/에러

[ 에러 ] Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined

by hak0205 2022. 2. 13.
반응형

Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined

안드로이드 빌드시, 다음과 같은 에러가 발생하였습니다.

 

 


해결책

AndroidManifest.xml에서 MainActivity가 되는 부분에 android:exported="true"를 추가해 줍니다.

 

manifests의 AndroidManifest.xml

 

android:exported란?

다른 애플리케이션의 구성요소로 액티비티를 시작할 수 있으면 true 아니라면 false를 선언합니다.

기본적으로 true를 추천합니다.

 

 

감사합니다.

 

export
 
명사
[ˈekspɔːt; 美 ˈekspɔːrt]
동사
[ɪkˈspɔːt; 美 ɪkˈspɔːrt]
1. 수출하다
2. (사상활동을 다른 나라나 지역에) 전하다[수출하다]
3. 수출
4. 수출품
 
 
반응형

댓글