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 |
Tags
- MVVM
- coroutine
- Gradle
- 웹뷰
- 안드로이드 스튜디오
- 레트로핏
- 코루틴
- 스튜디오
- dart
- RecyclerView
- viewpager
- 코틀린
- 안드로이드스튜디오
- ADB
- 안드로이드
- studio
- Kotlin
- error
- Android
- GIT
- 의존성주입
- 깃헙
- WebView
- Retrofit
- 안스
- Github
- 유튜브
- 에러
- build
- image
Archives
- Today
- Total
목록Lint (1)
코딩하는 일용직 노동자
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cX1F2Q/btqZctqjgms/CYIi1ekqrsgUE2VLTpy3A1/img.png)
앱을 테스트할때는 빌드가 잘 되는데 릴리즈용 apk 파일을 빌드할때는 못보던 에러가 발생하며 사이닝된 릴리즈용 파일을 만들지 못했다. Lint found fatal errors while assembling a release target. 검색해보니 처리할 수 있는 방법이 두가지 있다. #1. 리포트 파일을 읽어서 해결한다. app/build/reports/ 경로에 html 과 xml 파일이 생성된다. 이것을 참고해 에러의 원인을 해결한다. #2. module 의 build.gradle 파일에 아래의 옵션을 추가한다. android { lintOptions { checkReleaseBuilds false // Or, if you prefer, you can continue to check for erro..
안드로이드
2021. 3. 4. 21:10