Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Add the below dependency to your **module**'s `build.gradle` file:

```kotlin
dependencies {
implementation("io.getstream:stream-webrtc-android:1.3.8")
implementation("io.getstream:stream-webrtc-android:1.3.9")
}
```

Expand All @@ -70,20 +70,20 @@ dependencies {

### Including the SNAPSHOT

Snapshots of the current development version of AvatarView are available, which track [the latest versions](https://oss.sonatype.org/content/repositories/snapshots/io/getstream/stream-webrtc-android/).
<!-- Snapshots of the current development version of AvatarView are available, which track [the latest versions](https://oss.sonatype.org/content/repositories/snapshots/io/getstream/stream-webrtc-android/). -->

To import snapshot versions on your project, add the code snippet below on your gradle file.
```kotlin
repositories {
maven(url="https://oss.sonatype.org/content/repositories/snapshots/")
maven(url="https://central.sonatype.com/repository/maven-snapshots/")
}
```

Next, add the below dependency to your **module**'s `build.gradle` file:

```kotlin
dependencies {
implementation("io.getstream:stream-webrtc-android:1.3.8-SNAPSHOT")
implementation("io.getstream:stream-webrtc-android:1.3.10-SNAPSHOT")
}
```

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/io/getstream/Configurations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object Configurations {
const val appMinSdk = 24
const val majorVersion = 1
const val minorVersion = 3
const val patchVersion = 8
const val patchVersion = 9
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "io.getstream"
Expand Down