Flutter

안드로이드 Apps targeting Android 12 and higher 에러

Andro07 2024. 1. 1. 05:51
728x90
반응형

에러 문구

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 에서 android:exported="true" 추가

<activity
    android:name=".MainActivity"
    android:exported="true"

 

728x90
728x90