Research/Programming

Failed to resolve: com.tickaroo.tikxml:annotation:0.8.15

sunnyan 2024. 10. 30. 10:49
728x90

Kotlin으로 data class를 만들었으나 annotation 에러가 발생한다.

dependencies {
    ...

    //retrofit2
    implementation("com.squareup.retrofit2:retrofit:2.9.0")
    implementation("com.tickaroo.tikxml:annotation:0.8.15")
    implementation("com.tickaroo.tikxml:core:0.8.15")
    implementation("com.tickaroo.tikxml:retrofit-converter:0.8.15")
    annotationProcessor("com.tickaroo.tikxml:processor:0.8.15")
    kapt("com.tickaroo.tikxml:processor:0.8.15") // Kotlin 사용 시 필요한 kapt 설정
    ...

소스창에서는 아래와 같이 보인다.

그래서 구글링을 해본 결과 Know issue란다...    https://github.com/Tickaroo/tikxml/issues/127 

 

I get resolved dependencies error. · Issue #127 · Tickaroo/tikxml

Error Info ERROR: Failed to resolve: com.tickaroo.tikxml:annotation:0.8.15 Show in Project Structure dialog Affected Modules: app Java Android Project build.gradle files compileSdkVersion 28 defaul...

github.com

 

이 이후로 업데이트가 없는 걸로 봐서 0.8.13을 써야할 듯...

//retrofit2
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.tickaroo.tikxml:annotation:0.8.13")
implementation("com.tickaroo.tikxml:core:0.8.13")
implementation("com.tickaroo.tikxml:retrofit-converter:0.8.13")
annotationProcessor("com.tickaroo.tikxml:processor:0.8.13")
kapt("com.tickaroo.tikxml:processor:0.8.13") // Kotlin 사용 시 필요한 kapt 설정
728x90