해결된 질문
작성
·
43
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가 자동완성되지 않고 라이브러리도 추가 되지 않고 있습니다. 다른 질문글과 구글링을 해가며 다른 방법들도 시도해보다가 도저히 해결이 안돼서 질문 올립니다ㅠㅠ 아래에 깃허브 링크 공유했습니다
답변 2
0
안녕하세요
implementation("com.yuyakaido.android:card-stack-view:2.3.4")
이 부분 대신
implementation("com.github.yuyakaido:cardstackview:2.3.4")
이렇게 해보시겠어요?
0
Caused by: org.gradle.api.internal.artifacts.ivyservice.TypedResolveException: Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
이러한 오류가 뜨며 실행도 안됩니다.
해결됐습니다 감사합니다ㅜㅜ