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.beloo.widget:ChipsLayoutManager dependency #140

Open
JCreswellENVRMNT opened this issue Jan 12, 2022 · 4 comments
Open

Comments

@JCreswellENVRMNT
Copy link

Hello,
As of 2022-01-12 it seems jcenter has finally died and requests to it are throwing 502s. The dependency com.beloo.widget:ChipsLayoutManager (https://github.com/BelooS/ChipsLayoutManager) seems to be abandoned and is only hosted on jcenter; can you please switch to a different dependency or integrate this one somehow (maybe fork it and publish the result with original author's permission)?

@JCreswellENVRMNT
Copy link
Author

There's an issue tracking this on the com.beloo.widget repo BelooS/ChipsLayoutManager#69; I can work around by following the jitpack instructions there, but it requires excluding this dependency as-is from com.github.pchmn:MaterialChipsInput:1.0.8

@KrunalStrategyX
Copy link

Hi I have add chips Input as a module in my project and i was modify it android to androidx and after that I build the project getting chips layout manager library not found issue and also can not find com.pchmn.materialchips.R2;

@arindam091
Copy link

Hi guys, did you find any solution of this issue?

@JCreswellENVRMNT
Copy link
Author

JCreswellENVRMNT commented May 11, 2022

@arindam091 the solution is just to point jitpack at the BelooS/ChipsLayoutManager repo and use the resultant artifact. Jitpack works by pulling the source from the linked repo, building it, and hosting the output artifact in its own Maven repo. My build.gradle changed to:
project:
allprojects { repositories { google() ... maven { url "https://jitpack.io" } } }
module:
implementation('com.github.pchmn:MaterialChipsInput:1.0.8') { exclude group:'com.beloo.widget', module:'ChipsLayoutManager' } implementation 'com.github.BelooS:ChipsLayoutManager:v0.3.7'

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

3 participants