diff --git a/CHANGES.md b/CHANGES.md index a2f575c..31d5270 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changelog + -------------------------------------------- +[137.7151.01] - 2025.07.17 + +* Upgrade to WebRTC-SDK M137.7151.01 + [125.6422.07] - 2024.03.18 * Upgrade to WebRTC-SDK M125.6422.07 diff --git a/README.md b/README.md index d4c806d..919a25e 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This library is hosted on Maven Central. To include this library in your project ```gradle dependencies { - implementation 'io.github.webrtc-sdk:android:125.6422.07' + implementation 'io.github.webrtc-sdk:android:137.7151.01' } ``` @@ -19,6 +19,6 @@ avoiding any collisions with other WebRTC libraries: ```gradle dependencies { - implementation 'io.github.webrtc-sdk:android-prefixed:125.6422.07' + implementation 'io.github.webrtc-sdk:android-prefixed:137.7151.01' } ``` \ No newline at end of file diff --git a/build.gradle b/build.gradle index 4320d40..61b35e5 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ def getReleaseRepositoryUrl() { : "https://ossrh-staging-api.central.sonatype.com/service/local/" } -def getSnapshotRepositoryUrl() { +def getProjectSnapshotRepositoryUrl() { return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL : "https://central.sonatype.com/repository/maven-snapshots/" } @@ -40,7 +40,7 @@ nexusPublishing { repositories { maven { nexusUrl.set(uri(getReleaseRepositoryUrl())) - snapshotRepositoryUrl.set(uri(getSnapshotRepositoryUrl())) + snapshotRepositoryUrl.set(uri(getProjectSnapshotRepositoryUrl())) username = getRepositoryUsername() password = getRepositoryPassword() stagingProfileId = STAGING_PROFILE_ID diff --git a/gradle.properties b/gradle.properties index 6bf0c09..e4dd710 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.webrtc-sdk -VERSION_NAME=125.6422.07 +VERSION_NAME=137.7151.01 POM_NAME=WebRTC Android SDK POM_DESCRIPTION=WebRTC Android SDK POM_PACKAGING=aar