AigeStudio / WheelPicker

Simple and fantastic wheel view in realistic effect for android.
Apache License 2.0
2.57k stars 528 forks source link

Is this library dead? #171

Open true-hamid opened 2 years ago

true-hamid commented 2 years ago

this library is used in a react native package I'm trying to test, whenever i run the app after installing that package I'm getting the following error: Could not resolve cn.aigestudio.wheelpicker:WheelPicker:1.0.3.

Could not get resource 'https://www.jitpack.io/cn/aigestudio/wheelpicker/WheelPicker/1.0.3/WheelPicker-1.0.3.pom'. Could not GET 'https://www.jitpack.io/cn/aigestudio/wheelpicker/WheelPicker/1.0.3/WheelPicker-1.0.3.pom'. Received status code 401 from server: Unauthorized

Is there any solution for this issue, or is this library dead and I have to look for something else?

gitburakalp commented 2 years ago

+1

farfalletonde commented 2 years ago

happened to me as well but it is fixed now. not sure if that's the case for you. i don't trust this library anymore though, i should implement it myself 😂

danidelgadoz commented 2 years ago

This artifact is not located on jitpack repository, it is located at Spring Plugins repository (https://repo.spring.io/plugins-release/) which is not public anymore.

Look: https://mvnrepository.com/artifact/cn.aigestudio.wheelpicker/WheelPicker/1.1.2

It would be possible to move to a public repository?

ysoru commented 1 month ago

It is in this repository.

https://maven.scijava.org/content/repositories/public/cn/aigestudio/wheelpicker/WheelPicker/1.0.3/

fatso83 commented 1 month ago

Just inline it into your own project. Repo dependency is not an issue anymore ;)

YahyawiAF commented 2 weeks ago

Just inline it into your own project. Repo dependency is not an issue anymore ;)

Can you tell me please how to do that

fatso83 commented 1 week ago

Can you tell me please how to do that

Clone the repo, copy the folder of the library source code into your own project as "wheelpicker" and then add include :wheelpicker in your Gradle build file.

YahyawiAF commented 4 days ago

Can you tell me please how to do that

Clone the repo, copy the folder of the library source code into your own project as "wheelpicker" and then add include :wheelpicker in your Gradle build file.

Thank you so much @fatso83 in my case, I download the source from WheelPicker:1.1.2

Add it to the package "@delightfulstudio/react-native-wheel-picker-android" under node_modules _node_modules\@delightfulstudio\react-native-wheel-picker-android\android\src\main\java\com\delightfulstudio\wheelpicker

don't forget to change the package name to com.delightfulstudio.wheelpicker.model;

Comment in build.gradle // implementation "cn.aigestudio.wheelpicker:WheelPicker:1.1.2"

Also, I need to get some missing sources from https://github.com/AigeStudio/WheelPicker/tree/main/WheelPicker/src/main/res and save the changes with patch-package

image