version 1.2.1 does not resolve
bjarneheden opened this issue · 4 comments
ERROR: Failed to resolve: com.daasuu:BubbleLayout:1.2.1
Look like the dependency is not updated in mvn repository.
I also tried using the github link:
implementation 'com.github.MasayukiSuda:BubbleLayout:v1.2.1'
And setting it up in gradle.settings:
sourceControl {
gitRepository("https://github.com/MasayukiSuda/BubbleLayout.git") {
producesModule("com.github.MasayukiSuda:BubbleLayout")
}
}
That did also not work.
Perhaps I am doing something wrong?
See Read Me
In the Read Me it says:
implementation 'com.github.MasayukiSuda:BubbleLayout:v1.2.1'
I have also set up maven { url 'https://jitpack.io' } in the build file.
Still get:
ERROR: Failed to resolve: com.github.MasayukiSuda:BubbleLayout:v1.2.1
Am I doing something wrong?
Ah, I had only added it to repositories section and missed to also adding it in the allprojects section.
Now it works as expected!
Thank you!