We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25810aa commit 556fbd1Copy full SHA for 556fbd1
1 file changed
README.md
@@ -25,7 +25,7 @@ dependencies {
25
26
or for `app:build.gradle.kts`
27
28
-```gradle
+```kotlin
29
dependencies {
30
implementation("com.github.styropyr0:CustomizableDatePicker:1.0.0")
31
}
@@ -42,6 +42,17 @@ dependencyResolutionManagement {
42
43
```
44
45
+or for `settings.gradle.kts`
46
+
47
48
+dependencyResolutionManagement {
49
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
50
+ repositories {
51
+ mavenCentral()
52
+ maven { url = uri("https://jitpack.io") }
53
+ }
54
55
+```
56
57
## Usage
58
0 commit comments