CRED-CLUB / neopop-android

NeoPop is CRED's inbuilt library for using NeoPop components in your app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update Installation Steps in README.md

abhimanyu95 opened this issue · comments

Previously

2.Add this to the root/project build.gradle file:
allprojects {
  repositories {
    google()
    jcenter()

    maven {
        url = 'https://libs.dev.cred.club/'
    }
  }
}

After Latest Update of Android Studio Arctic Fox
Now they had moved this block to settings.gradle file

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven {
            url = 'https://libs.dev.cred.club/'
        }
    }
}