강의

멘토링

커뮤니티

Inflearn Community Q&A

tnghks21003340's profile image
tnghks21003340

asked

[Beginner-Intermediate] Creating an Android Dating App (Android Kotlin)

CardStackView Implementation

CardStackView

Resolved

Written on

·

94

0

안녕하세요. 제가 CardStackView구현 강의를 보며 그대로 따라하고

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() //추가
        maven { url = uri("https://jitpack.io") }
    }
}
dependencies {

    implementation(libs.androidx.core.ktx)
    implementation(libs.androidx.appcompat)
    implementation(libs.material)
    implementation(libs.androidx.activity)
    implementation(libs.androidx.constraintlayout)
    testImplementation(libs.junit)
    androidTestImplementation(libs.androidx.junit)
    androidTestImplementation(libs.androidx.espresso.core)

    implementation("com.yuyakaido.android:card-stack-view:2.3.4")
}

이렇게 추가 했는데 CardStackView가 자동완성되지 않고 라이브러리도 추가 되지 않고 있습니다. 다른 질문글과 구글링을 해가며 다른 방법들도 시도해보다가 도저히 해결이 안돼서 질문 올립니다ㅠㅠ 아래에 깃허브 링크 공유했습니다

 

https://github.com/SuHwanYY/Sogeting_App

androidkotlin

Answer 2

0

bokchi님의 프로필 이미지
bokchi
Instructor

안녕하세요

implementation("com.yuyakaido.android:card-stack-view:2.3.4")

이 부분 대신

implementation("com.github.yuyakaido:cardstackview:2.3.4")

이렇게 해보시겠어요?

tnghks21003340님의 프로필 이미지
tnghks21003340
Questioner

해결됐습니다 감사합니다ㅜㅜ

0

tnghks21003340님의 프로필 이미지
tnghks21003340
Questioner

Caused by: org.gradle.api.internal.artifacts.ivyservice.TypedResolveException: Could not resolve all files for configuration ':app:debugRuntimeClasspath'.

이러한 오류가 뜨며 실행도 안됩니다.

tnghks21003340's profile image
tnghks21003340

asked

Ask a question