Skip to content

Commit 7e9eaee

Browse files
committed
Prepare for open-sourcing, no longer need JitPack creds.
1 parent b37739a commit 7e9eaee

File tree

5 files changed

+3
-16
lines changed

5 files changed

+3
-16
lines changed

DemoApp/DemoAppJava/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ allprojects {
1818
jcenter()
1919
maven {
2020
url "https://jitpack.io"
21-
credentials { username authToken }
2221
}
2322
}
2423
}

DemoApp/DemoAppJava/gradle.properties

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,4 @@ org.gradle.jvmargs=-Xmx2048m
1616
# https://developer.android.com/topic/libraries/support-library/androidx-rn
1717
android.useAndroidX=true
1818
# Automatically convert third-party libraries to use AndroidX
19-
android.enableJetifier=true
20-
# Jitpack.io authToken for accessing PRIVATE GitHub repo to build co.optable.android_sdk depend:
21-
authToken=jp_usu041v753rg6asheri00bjihl
19+
android.enableJetifier=true

DemoApp/DemoAppKotlin/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ allprojects {
2020
jcenter()
2121
maven {
2222
url "https://jitpack.io"
23-
credentials { username authToken }
2423
}
2524
}
2625
}

DemoApp/DemoAppKotlin/gradle.properties

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,4 @@ android.useAndroidX=true
1818
# Automatically convert third-party libraries to use AndroidX
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
21-
kotlin.code.style=official
22-
# Jitpack.io authToken for accessing PRIVATE GitHub repo to build co.optable.android_sdk depend:
23-
authToken=jp_usu041v753rg6asheri00bjihl
21+
kotlin.code.style=official

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,12 @@ allprojects {
3030
...
3131
maven {
3232
url 'https://jitpack.io'
33-
credentials { username authToken }
3433
}
3534
}
3635
}
3736
```
3837

39-
In order to allow [JitPack](https://jitpack.io/) to access this private GitHub repository, add the following authToken to your `gradle.properties`:
40-
41-
```
42-
authToken=jp_usu041v753rg6asheri00bjihl
43-
```
44-
45-
Finally, add the dependency to the SDK in your app `build.gradle`:
38+
Then add the dependency to the SDK in your app `build.gradle`:
4639

4740
```kotlin
4841
dependencies {

0 commit comments

Comments
 (0)