Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AtifSayings authored Sep 17, 2023
1 parent 5a1aacf commit cea808f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,29 @@ dependencyResolutionManagement {
}
```

OR. In Newer Versions of Android Studio with Kotlin DSL settings.gradle.kts file:

```java
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
jcenter()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
jcenter()
}
}
```

Add the dependency to your module build.gradle:
```java
dependencies {
Expand Down

0 comments on commit cea808f

Please sign in to comment.