3

I'm trying use BlurBehind Lib but I getting a error.

Error:Failed to find: com.faradaj:blur-behind:[LATEST_RELEASE_VERSION] 

I added

dependencies { compile 'com.faradaj:blur-behind:[LATEST_RELEASE_VERSION]' } 

I'm still adapting to the new IDE, and I appreciate any help!

2 Answers 2

3

Here is how you properly add this library:

Step one

repositories { maven { url "https://jitpack.io" } } 

Step two

dependencies { compile 'com.github.faradaj:BlurBehind:1.0.3' } 
Sign up to request clarification or add additional context in comments.

3 Comments

ok sorry you are right that that's where it says to do this but it still cannot resolve.
Try adding the two classes (BlurBehind.java and util/Blur.java) in your project manually github.com/faradaj/BlurBehind/tree/master/blur-behind/src/main/…
well that worked, thanks for the suggestion. Don't know why I didn't think of doing that, I've resorted to this as a final solution several times. Thanks again
2

Couple of things here.

First of all, this library is not distributed from JCenter or even Maven Central. That means that you need to build it from source. Feel free to +1 this issue. Luckily, it's rather straightforward, just follow the github instructions.

Once you done that, you'll need to specify the version instead of [LATEST_RELEASE_VERSION]. At the moment it's 1.0.3.

1 Comment

Thank you so much! I had checked that the latest version on the github, but I had not found the other information you have provided, these here in the your response.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.