CardStackView icon indicating copy to clipboard operation
CardStackView copied to clipboard

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

Open yuqiaodan opened this issue 7 months ago • 7 comments

Can not resolve this lib , is it not working?

yuqiaodan avatar Nov 14 '23 09:11 yuqiaodan

targetSdk = 33 compileSdk = 33

my repositories:

repositories { google() mavenCentral() }

yuqiaodan avatar Nov 14 '23 09:11 yuqiaodan

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

yuqiaodan avatar Nov 14 '23 09:11 yuqiaodan

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

s3878023 avatar Jan 15 '24 01:01 s3878023

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 👍

Fesci avatar Feb 08 '24 19:02 Fesci

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

giorgishubitidze3 avatar Feb 20 '24 13:02 giorgishubitidze3

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

LeonelZalegas avatar Mar 02 '24 14:03 LeonelZalegas

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: https://github.com/yuyakaido/CardStackView/issues/376#issuecomment-1934843855

yuqiaodan avatar Mar 05 '24 03:03 yuqiaodan