Android

[Android 빌드 에러 ] figlib 관련

Machine_웅 2024. 11. 7. 10:45
728x90
반응형

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'

 

사용 중임

728x90
반응형