tylersuehr7 / chips-input-layout

A customizable Android ViewGroup for displaying Chips (specified in the Material Design Guide).
MIT License
583 stars 63 forks source link

Unable to import library project using Gradle #16

Closed 21rupeshpatil closed 6 years ago

21rupeshpatil commented 6 years ago

After following steps to import your library i am getting error Failed to resolve: com.github.tylersuehr7:chips-input-layout:2.0 Any help would be appreciate. Thanks in Advance.

lines included in project : project level build.gradle maven { url "https://jitpack.io" }

app level build.gradle compile 'com.github.tylersuehr7:chips-input-layout:2.0'

erichlotto commented 6 years ago

Had the same issue, falling back to v1.3 solved it: compile 'com.github.tylersuehr7:chips-input-layout:1.3'

tylersuehr7 commented 6 years ago

Thanks for letting me know about this issue! It seems that JitPack wasn't able to compile version 2.0.

I'll try to resolve this issue as soon as possible; it may just be because I updated the Gradle version

21rupeshpatil commented 6 years ago

@erichlotto and @tylersuehr7 Thank you very much for the prompt reply. @tylersuehr7 Looking forward to implement 2.0. Great Work

Kodak1234 commented 6 years ago

I am experiencing the same problem.

tylersuehr7 commented 6 years ago

Try using chips-input-layout:2.2, that should fix the not being resolved issue.

For some reason when I previously let my Android Studio update my Gradle version, it commented out the entire gradlew file and that's what was causing Jitpack.io to not be able to build the library

21rupeshpatil commented 6 years ago

Thanks @tylersuehr7 . Working Perfectly Now. Keep Doing Great Work.