일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- upbit
- 중1코딩
- league of legends
- MYSQL
- MS-SQL
- 초딩수학
- python
- PromptEngineering
- 엔트리
- 한글깨짐
- Excel
- Kakao API Address
- cc챔피언
- .csv
- MSSQL
- ASP.NET MVC
- 코딩입문
- AIoptimization
- swift 화면전환
- 아이코딩습관
- 일본여행
- chart.js
- largelanguagemodels
- Android
- 블록코딩
- Aspose.cells
- httpclient timeout
- 오블완
- 중학생코딩
- 썸머노트
Archives
- Today
- Total
DBA
안드로이드 12 (API 31)를 타겟팅 할 때 생기는 에러 본문
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