fython / MaterialStepperView

Steppers - Material Design Components for Android
MIT License
2.18k stars 259 forks source link

Failed to resolve: moe.feng:MaterialStepperView:0.2.4.2 #19

Open l0r5 opened 6 years ago

l0r5 commented 6 years ago

Hey!

Unfortunately I can't initialize the latest version of your build.

I added it as follows in gradle: implementation 'moe.feng:MaterialStepperView:0.2.4.2' and get this error message: 'Failed to resolve: moe.feng:MaterialStepperView:0.2.4.2'

It would be great if you could solve this issue :)

Cheers!

ahmetturk commented 6 years ago

Add maven { url "https://jitpack.io" } to your build.gradle (Project) like this:

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}
Kashish-Sharma commented 6 years ago

Thanks, but still failed to resolve

wilstroz commented 6 years ago

I encountered the same problem...Found out that issue was:

  1. Adding maven { url "https://jitpack.io" } to your build.gradle (project) as explained by @ahmetturk

  2. Then Increasing the minSdkVersion (mine was initially 15 and had to increase it to about 17).

After this, everything worked out fine.