안드로이드 스튜디오를 업데이트만 하고 나면 항상 에러가 생겨서 업데이트를 별로 안하고 싶지만 Galaxy j5를 인식하지 못해서 어쩔수 없이 업데이트하고 나니 아래와 같이 에러가 발생하였다.
Manifest merger failed : 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. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.
찾아보니 manifest에 android:exported="true"를 추가하라고함
<manifest ... >
<activity
android:screenOrientation="portrait"
android:exported="true"
<intent-filter>
'프로그래밍 > 안드로이드' 카테고리의 다른 글
안드로이드 스튜디오 Cannot resolve symbol 오류 (0) | 2024.03.12 |
---|---|
안드로이드 스튜디오 wifi 디버깅 세팅하기 (0) | 2023.12.26 |
안드로이드 자바/코틀린 예제 (0) | 2022.12.03 |
에러 종류별 해결 방법 (0) | 2022.11.15 |