What is the best way to add this small sexy library (which does not use maven yet) to my project?
I see an 'import module' and 'import project' option under the File menu, so I assume I should use one of these? I have tried with both and while the project source does pop up in Android Studio I cannot use any of the library content.
There are many questions on SO regarding importing libraries to Android Studio, but most either use a project which has a jar file, or are using a much older version so I'm not too sure how to do this. This question seems similar to mine, I have tried to import the folder as a module, and added this to my build.gradle:
compile project(':ChromaHashView:library')
And this popped up in the settings.gradle
include 'ChromaHashView'
But I get an error saying the ':ChromaHashView:library' could not be found in my project.