[Android Studio] As of Android 12, `android:exported` must be set; use `true` to make the activity available to other apps, and `false` otherwise. For launcher activities, this should be set to `true`.
[안드로이드 스튜디오] 안드로이드 12에서는 `android:exported`를 반드시 설정해야 한다 문제 As of Android 12, `android:exported` must be set; use `true` to make the activity available to other apps, and `false` otherwise. For launcher activities, this should be set to `true`. 해결 방법 참고 Android 12를 타겟팅(targetSdkVersion 31)하는 경우, andorid:exported 설정이 필요하다.(Manifest merger failed) Android 12를 타겟팅하는경우, AndroidManifest.xml파일에서 activ..