garretyoder / Colorful

Android runtime theme library
Apache License 2.0
2.13k stars 193 forks source link

ERROR: Failed to resolve: com.github.garretyoder:Colorful:2.3.4 #48

Open superdiazzz opened 4 years ago

superdiazzz commented 4 years ago

I followed all the step ofI implement for current version to my kotlin project implementation 'com.github.garretyoder:Colorful:2.3.4' But always failed to build the library.

defvs commented 4 years ago

Did you add the correct maven repo ?

Add jitpack to your maven sources

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