일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 초딩수학
- MSSQL
- Oracle
- 세로 스크롤 막대
- Kakao API Address
- chart.js
- 스크롤 사라짐
- 썸머노트
- python
- Excel
- CSV
- Aspose.cells
- LEFT JOIN
- Banker's
- 일본여행
- rounding
- 가로 스크롤 막대
- Banker's rounding
- 나만의 상점
- 한글깨짐
- MS-SQL
- .csv
- MYSQL
- Request.Form
- 시트 탭 사라짐
- 업비트
- Android
- swift 화면전환
- upbit
- league of legends
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