MaterialStepperView icon indicating copy to clipboard operation
MaterialStepperView copied to clipboard

Failed to resolve: moe.feng:MaterialStepperView:0.2.4.2

Open l0r5 opened this issue 7 years ago • 3 comments

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!

l0r5 avatar Apr 04 '18 10:04 l0r5

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

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

ahmetturk avatar Apr 23 '18 11:04 ahmetturk

Thanks, but still failed to resolve

Kashish-Sharma avatar Jun 15 '18 02:06 Kashish-Sharma

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.

wilstroz avatar Sep 13 '18 07:09 wilstroz