Skip to content

Commit

Permalink
release: 114.5735.07.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidliu committed Dec 27, 2023
1 parent e4746ef commit b2935eb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,14 @@ jobs:
./downloadAar.sh
./downloadAar_prefixed.sh
- name: Check aar exists
- name: Check required files exist
run: |
test -f "android/libwebrtc.aar"
test -f "android-prefixed/libwebrtc_prefixed.aar"
test -f "android-prefixed/shadow/libs/classes.jar"
test -f "android-prefixed/src/main/jniLibs/arm64-v8a/liblkjingle_peerconnection_so.so"
test -f "android-prefixed/src/main/jniLibs/armeabi-v7a/liblkjingle_peerconnection_so.so"
test -f "android-prefixed/src/main/jniLibs/x86/liblkjingle_peerconnection_so.so"
test -f "android-prefixed/src/main/jniLibs/x86_64/liblkjingle_peerconnection_so.so"
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

--------------------------------------------

[114.5735.07] - 2023.12.26

* Upgrade to WebRTC-SDK M114.5735.07
* Add a separate prefixed version of the WebRTC-SDK to avoid name collision

[114.5735.05] - 2023.09.21

* Upgrade to WebRTC-SDK M114.5735.05
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:114.5735.06'
implementation 'io.github.webrtc-sdk:android:114.5735.07'
}
```

Expand All @@ -19,6 +19,6 @@ avoiding any collisions with other WebRTC libraries:

```gradle
dependencies {
implementation 'io.github.webrtc-sdk:android-prefixed:114.5735.06'
implementation 'io.github.webrtc-sdk:android-prefixed:114.5735.07'
}
```
2 changes: 1 addition & 1 deletion downloadAar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ VERSION=`grep -o 'VERSION_NAME=.*' gradle.properties | cut -f2- -d=`
SDK_BIN_URL=https://github.com/webrtc-sdk/android/releases/download/v${VERSION}/libwebrtc.aar

echo "Downloading webrtc-sdk ${VERSION} binary for android."
curl -f -L -O ${SDK_BIN_URL}
curl -f -L -o "android/libwebrtc.aar" ${SDK_BIN_URL}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=io.github.webrtc-sdk
VERSION_NAME=114.5735.05
VERSION_NAME=114.5735.07
POM_NAME=WebRTC Android SDK
POM_DESCRIPTION=WebRTC Android SDK
POM_PACKAGING=aar
Expand Down

0 comments on commit b2935eb

Please sign in to comment.