Android의
implementation 'com.androidplot:androidplot-core:1.4.1' // 차트 라이브러리
를 사용하던중 Gradle 버전을 7.2 이상 사용하면서 오랜만에 빌드를 해보니
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Execution failed for task ':app:mapDebugSourceSetPaths'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Execution failed for task ':app:mergeDebugResources'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Execution failed for task ':app:processDebugMainManifest'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Execution failed for task ':app:mergeDebugAssets'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
등등....
> Could not find figlib-1.0.3.aar (cohttp://m.halfhp.fig:figlib:1.0.3). 이걸 계속 언급하고 있었다.
이게 뭐여 ..??
그래서 Bulid.Gradle ( app ) 에
implementation 'com.halfhp.fig:figlib:1.0.3'
을 추가했더니 또 뭐라뭐라 안된대
implementation 'com.halfhp.fig:figlib:1.0.11'
으로 버전을 올려서 하니 잘됨..
지금은 페어하게
implementation 'com.androidplot:androidplot-core:1.4.1' // 차트 라이브러리
implementation 'com.halfhp.fig:figlib:1.0.11'
사용 중임
'Android' 카테고리의 다른 글
Android 모듈 만들기 / 라이브러리 만들기 (0) | 2024.09.04 |
---|---|
Android Studio / Inteli J 디버깅 (0) | 2024.03.13 |
wifi direct (p2p) 정리 (0) | 2024.02.23 |
Android AudioRecode PCM to wav (0) | 2024.02.19 |
android.hardware.usb.action.USB_ACCESSORY_ATTACHED (0) | 2024.01.23 |