We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e223387 commit 07d4499Copy full SHA for 07d4499
1 file changed
README.md
@@ -17,13 +17,20 @@ dependencyResolutionManagement {
17
..
18
repositories {
19
20
- maven("https://maven.pkg.github.com/dylan-kwon/android-version-migrator")
+ maven("https://maven.pkg.github.com/dylan-kwon/android-version-migrator") {
21
+ credentials {
22
+ username = INPUT-YOUR-USER-NAME
23
+ password = INPUT-YOUR-GITHUB-TOKEN
24
+ }
25
26
}
27
28
```
29
30
```kotlin
-implementation("dylan.kwon:version-migrator-android:$version")
31
+implementation("dylan.kwon:version-migrator-android:$version") {
32
+
33
+}
34
35
36
## How To Use
0 commit comments