반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- swift
- AI
- Spring
- 스프링부트
- Xcode
- javascript
- MySQL
- 아이패드다이어리
- JPA
- IOS
- 42seoul
- libasm
- 스프링
- 오라클
- CD
- 네트워크
- 인공지능
- 데이터베이스
- 티스토리챌린지
- 소켓
- jenkins
- DBMS
- springboot
- CI
- sql
- 프로그래밍언어론
- 오블완
- 리눅스
- 다이어리
- 스프링부트 웹 소켓
Archives
- Today
- Total
Hi yoahn 개발블로그
aapt android resource linking failed 본문
반응형
안드로이드를 실행하던 중 갑자기 AAPT가 리소스를 연결하지 못했다는 에러가 뜨는데 이전에 실행했던 것과 같은 코드를 사용해도 계속 그런 결과가 나왔다. 찾아보니까 그냥 코드 오류인 경우가 대부분인데 나는 아니어서 여기에 남겨둠
build.gradle 파일에서
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
dependencies 부분에서 두번째 줄에 있는 implementation 버전을 변경하니까 잘 동작했다.
반응형
Comments