애플리케이션을 다 만들고 APK를 생성할 때 생기는 에러에 대해 알아보겠습니다.
밑에는 풀 에러입니다.
Lint found fatal errors while assembling a release target.
To proceed, either fix the issues identified by lint, or modify your build script as follows: ...
android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false } } ...
에러 부분에서 친절하게 알려주네요.
android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false } }
위에 부분을 bulid.gradle의 android 부분에 넣어 주시면 됩니다.
에러를 더 확실하게 보고 싶은 분들은
앱 보기 방법을 Project로 바꿔주시고
app -> build -> reports -> lint-results-release-fatal.html를 확인해주시면 됩니다.
'Android Studio' 카테고리의 다른 글
안드로이드 스튜디오 커스텀 폰트 (Custom font) 적용하기 (0) | 2019.12.23 |
---|---|
안드로이드 스튜디오 (Key Store) 키 생성 및 APK 추출하기 (0) | 2019.12.22 |
안드로이드 스튜디오 리스트 뷰 (ListView) 사용하기 (0) | 2019.12.20 |
안드로이드 스튜디오 친구에게 앱 공유하기 (앱 내보내기) (2) | 2019.12.18 |
안드로이드 스튜디오 텍스트 클릭 시 이메일 보내기 (Intent / email) (0) | 2019.12.18 |