DBA

안드로이드 12 (API 31)를 타겟팅 할 때 생기는 에러 본문

[3] Development/Android

안드로이드 12 (API 31)를 타겟팅 할 때 생기는 에러

코볼 2023. 4. 19. 10:20
728x90
반응형
SMALL

Execution failed for task ':app:processDebugMainManifest'.
> Manifest merger failed with multiple errors, see logs

 

 

인텐트 필터가 포함되어진 컴포넌트에 exported = true를 선언해주면 해결

 

 

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

위 와 같은 intent-filter 태그를 가지고 있는 <activity>, <receiver>, <serveice> 태그에 추가 하면 됨

android:exported="true"
728x90
반응형
LIST
Comments