Reputation: 36237
I have a project hosted on GitHub at https://github.com/BoardiesITSolutions/NavigationDrawerManager.
I've seen some projects on GitHub state adding it to their gradle file in Android Studio to the dependencies section but this doesn't seem to be working for me.
I have tried compile: 'com.github.boardiesitsolutions.NavigationDrawerManager:+' but it keeps saying it can't find it, I've also tried replacing the + with the version number but no luck, Android Studio keeps saying it can't find it. I've added the repository MavenCentral as well.
Is there something I need to do from GitHub to make it accessible for Gradle?
Upvotes: 1
Views: 79
Reputation: 15824
I don't see it on maven. You can use this website to use non-mavenized libraries with Gradle.
Just add maven { url "https://jitpack.io" }
to repositories
section of build.gradle
and use compile 'com.github.BoardiesITSolutions:NavigationDrawerManager:0b14c84445'
in dependencies
.
Upvotes: 4