neopop-android icon indicating copy to clipboard operation
neopop-android copied to clipboard

Update Installation Steps in README.md

Open abhimanyu95 opened this issue 2 years ago • 0 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/'
        }
    }
}

abhimanyu95 avatar Aug 19 '22 13:08 abhimanyu95