Skip to content

Commit f202172

Browse files
committed
replace jitpack with maven
1 parent 8bc7ce3 commit f202172

File tree

1 file changed

+3
-3
lines changed
  • src/connections/sources/catalog/libraries/mobile/kotlin-android

1 file changed

+3
-3
lines changed

src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ To get started with the Analytics-Kotlin mobile library:
2525
2. Search for **Kotlin (Android)** and click **Add source**.
2626
2. Add the Analytics dependency to your build.gradle.
2727

28-
Segment recommends you to install the library with a build system like Gradle, as it simplifies the process of upgrading versions and adding integrations. The library is distributed through [Jitpack](https://jitpack.io/){:target="_blank"}. Add the analytics module to your build.gradle as a dependency as shown in the code sample below.
28+
Segment recommends you to install the library with a build system like Gradle, as it simplifies the process of upgrading versions and adding integrations. The library is distributed through [Maven Central](https://search.maven.org/search?q=g:com.segment.analytics.kotlin){:target="_blank"}. Add the analytics module to your build.gradle as a dependency as shown in the code sample below, and replace `<latest_version>` with the latest version listed in [Maven Central](https://search.maven.org/search?q=g:com.segment.analytics.kotlin){:target="_blank"}
2929

3030
```
3131
repositories {
32-
maven { url 'https://jitpack.io' }
32+
mavenCentral()
3333
}
3434
dependencies {
35-
implementation 'com.github.segmentio.analytics-kotlin:android:+'
35+
implementation 'com.segment.analytics.kotlin:android:<latest_version>'
3636
}
3737
```
3838

0 commit comments

Comments
 (0)