Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to resolve: com.yuyakaido.android:card-stack-view:2.3.4 #376

Open
yuqiaodan opened this issue Nov 14, 2023 · 12 comments
Open

Failed to resolve: com.yuyakaido.android:card-stack-view:2.3.4 #376

yuqiaodan opened this issue Nov 14, 2023 · 12 comments

Comments

@yuqiaodan
Copy link

Can not resolve this lib , is it not working?

@yuqiaodan
Copy link
Author

targetSdk = 33
compileSdk = 33

my repositories:

repositories {
google()
mavenCentral()
}

@yuqiaodan
Copy link
Author

I use the improt module to solve this problem for the time being

@s3878023
Copy link

Can you show more on the import module cause I dont really understand but I have the same issue with the one you were facing

@Fesci
Copy link

Fesci commented Feb 8, 2024

In kotlin its
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
setUrl("https://jitpack.io")
}
}

}

and implementation in the build.gradle
implementation ("com.github.yuyakaido:CardStackView:v2.3.4")

that worked for me 👍

@giorgishubitidze3
Copy link

In kotlin its dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { setUrl("https://jitpack.io") } }

}

and implementation in the build.gradle implementation ("com.github.yuyakaido:CardStackView:v2.3.4")

that worked for me 👍

thanks a lot that worked for me too

@LeonelZalegas
Copy link

In kotlin its dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { setUrl("https://jitpack.io") } }

}

and implementation in the build.gradle implementation ("com.github.yuyakaido:CardStackView:v2.3.4")

that worked for me 👍

Nice ! its working like this

@yuqiaodan
Copy link
Author

Can you show more on the import module cause I dont really understand but I have the same issue with the one you were facing

Meybe you can try this: #376 (comment)

@dchack
Copy link

dchack commented Aug 20, 2024

it not woks.
build error info:Failed to resolve: com.yuyakaido.android:card-stack-view:2.3.4

@MiltosKaripidisPoq
Copy link

Same for me. Failed to resolve dependency. Did something happen lately?

@renbercheGit
Copy link

renbercheGit commented Sep 9, 2024

Same for me.

Could not find com.github.yuyakaido:CardStackView:v2.3.4.

@MiltosKaripidisPoq
Copy link

For anyone else having the same issue, it has changed source:

com.yuyakaido.android:card-stack-view -> com.github.yuyakaido:cardstackview.

Finally, make sure to add the following under project's build.gradle:

allprojects {
    repositories {
        maven { url 'https://perimeterx.jfrog.io/artifactory/px-Android-SDK/' }
    }
}

@renbercheGit
Copy link

Now it seems to work, thank @MiltosKaripidisPoq

I suggest checking the dependencies in the Android studio application setting, the older com.yuyakaido.android:card-stack-view was taken even if the line in the gradle settings was deleted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants