Android/개발 정보

AndroidManifest의 android:exported

일놀 2023. 1. 13. 10:43
728x90
반응형

AndroidManifest.xml 안에서 activity 설정중에 android:exported 와 intent-filter 가 있다.

 

android:exported는 다른 앱에서 해당 Activity를 시작할 수 있으면 true, 없으면 false로 설정하는 것이다.

 

android:exported="false"일 경우 해당 Activity는 같은 앱 또는 사용자 ID가 같은 앱에서만 시작할 수 있다.

 

intent-filter 가 설정되어 있는 activity 에서는 false로 설정할 수 없고 true로 설정해야 한다.

 

* intent-filter 안에 이렇게 설정 되어 있으면 앱 실행 시 처음으로 출력되는 화면.

<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
728x90
반응형