Android 관련

android:exported 값 설정 기준

이나주니 2025. 1. 9. 13:27
반응형

android:exported 값 설정 기준

  1. android:exported="true"
    • 컴포넌트가 외부 애플리케이션으로부터 호출될 수 있도록 허용합니다.
    • 이 설정은 **<intent-filter>**가 있는 컴포넌트에 일반적으로 사용됩니다.
  2. android:exported="false"
    • 컴포넌트가 외부 애플리케이션으로부터 호출되지 않도록 제한합니다.
    • 앱 내부에서만 사용하는 컴포넌트에 사용됩니다.
반응형