Piashsarker/AndroidAppUpdateLibrary

Failed to resolve: com.github.Piashsarker:AndroidAppUpdateLibrary:1.0.4

EdgardLevy opened this issue · 2 comments

I followed the instructions, but i received this gradle build error

Failed to resolve: com.github.Piashsarker:AndroidAppUpdateLibrary:1.0.4

image

Working fine for me.
Did you add the below line in project-level build.gradle

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

Provide a full logcat if possible. Thanks

Now, it's works :-)

i made this change in settings.gradle

dependencyResolutionManagement{
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories{
google()mavenCentral()maven{
url'https://jitpack.io'
}
}
}