본문 바로가기

Android/Build Error23

[Android] Cause: couldn't make a guess for 빌드 에러 빌드 에러 메시지 Cause: couldn't make a guess for com.Json.ForTest.databinding.ActivityMainBindingImpl 원인 : 패키지명 대문자 포함 + xml 데이터 바인딩 사용 해결 방법 1. 패키지명 소문자 변경 : com.Jon.ForTest -> com.jon.fortest 변경 2. 레이아웃 데이터 바인딩 사용 X 빌드 성공 패키지명 변경 후 빌드 성공 2022. 8. 4.
[안드로이드] Jenkins 빌드 에러 Starting a Gradle Daemon, 1 incompatible Daemon could not be reused, use --status for details 현상 : Jenkins 빌드시 Starting a Gradle Daemon, 1 incompatible Daemon could not be reused, use --status for details 빌드 오류 발생 특이점 : 터미널 gradlew 에서 정상 빌드 해결 : gradle 버전 업데이트 5.4.1 -> 6.3 현재 버전 파일 경로 : /gradle/wrapper/gradle-wrapper.properties json@JSonui-MacPro wrapper % cat gradle-wrapper.properties #Thu Jan 02 13:51:33 KST 2020 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStore.. 2021. 10. 6.
[안드로이드] using Jetifier. Reason: begin 1, end -1, length 2 에러 빌드 에러 : using Jetifier. Reason: begin 1, end -1, length 2 원인 : aar 빌드에 사용된 gradle 버전과 aar를 사용하는 Client gradle 버전이 맞지 않음. 해결 방법 : gradle 버전 동일하게 변경 Execution failed for task ':app:preDebugBuild'. > Could not resolve all files for configuration ':app:debugCompileClasspath'. > Failed to transform cybertel-service_v2-21100101_dev.aar (com.json.sample:service:2021) to match attributes {artifactType=a.. 2021. 10. 6.
[안드로이드] KeytoolException 빌드 에러 해결 방법 KeytoolException 빌드 에러 해결 방법 원인 : 사이닝키 비밀번호 오류 해결 : 사이닝키 비밀번호 재입력 오류 메시지 Execution failed for task ':app:packageRelease'. > 1 exception was raised by workers: java.lang.RuntimeException: java.lang.RuntimeException: com.android.ide.common.signing.KeytoolException: Failed to read key androidkey from store "D:\05.SigningKey\key.keystore": Keystore was tampered with, or password was incorrect * Try:.. 2021. 9. 6.