android:exported는
오류 메시지에 따르면 android를 명시적으로 지정해야 합니다. 인텐트 필터가 정의된 모든 활동에 대해 내보낸 속성입니다. AndroidManifest.xml 파일에서 내부 활동이나 앱 내에서 특정 목적으로만 사용되는 활동 등 다른 애플리케이션에서 액세스할 수 없는 모든 활동에 대해 android:exported 속성을 false로 설정하세요.
다음은 AndroidManifest.xml 파일에서 android:exported 속성을 설정하는 방법에 대한 예입니다.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.myApp"> <application> <activity android:name=".MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".SettingsActivity" android:exported="false" /> </application> </manifest>
이 예에서는 MainActivity를 내보내고 다른 애플리케이션에서 액세스할 수 있지만, SettingsActivity는 내보내지 않습니다. 다른 애플리케이션에서는 액세스할 수 없습니다.
앱의 모든 활동에 대해 android:exported 속성을 설정한 후에는 앱 구축을 다시 시도할 수 있습니다. 오류 메시지가 더 이상 나타나지 않습니다.
위 내용은 Android 12 이상에서 'Android:exported를 명시적으로 지정해야 합니다' 오류를 수정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!