Skip to content

Commit b2935eb

Browse files
committed
release: 114.5735.07.
1 parent e4746ef commit b2935eb

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,14 @@ jobs:
3030
./downloadAar.sh
3131
./downloadAar_prefixed.sh
3232
33-
- name: Check aar exists
33+
- name: Check required files exist
3434
run: |
3535
test -f "android/libwebrtc.aar"
36-
test -f "android-prefixed/libwebrtc_prefixed.aar"
36+
test -f "android-prefixed/shadow/libs/classes.jar"
37+
test -f "android-prefixed/src/main/jniLibs/arm64-v8a/liblkjingle_peerconnection_so.so"
38+
test -f "android-prefixed/src/main/jniLibs/armeabi-v7a/liblkjingle_peerconnection_so.so"
39+
test -f "android-prefixed/src/main/jniLibs/x86/liblkjingle_peerconnection_so.so"
40+
test -f "android-prefixed/src/main/jniLibs/x86_64/liblkjingle_peerconnection_so.so"
3741
3842
- name: Grant execute permission for gradlew
3943
run: chmod +x gradlew

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33
--------------------------------------------
4+
5+
[114.5735.07] - 2023.12.26
6+
7+
* Upgrade to WebRTC-SDK M114.5735.07
8+
* Add a separate prefixed version of the WebRTC-SDK to avoid name collision
9+
410
[114.5735.05] - 2023.09.21
511

612
* Upgrade to WebRTC-SDK M114.5735.05

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This library is hosted on Maven Central. To include this library in your project
1010

1111
```gradle
1212
dependencies {
13-
implementation 'io.github.webrtc-sdk:android:114.5735.06'
13+
implementation 'io.github.webrtc-sdk:android:114.5735.07'
1414
}
1515
```
1616

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

2020
```gradle
2121
dependencies {
22-
implementation 'io.github.webrtc-sdk:android-prefixed:114.5735.06'
22+
implementation 'io.github.webrtc-sdk:android-prefixed:114.5735.07'
2323
}
2424
```

downloadAar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ VERSION=`grep -o 'VERSION_NAME=.*' gradle.properties | cut -f2- -d=`
99
SDK_BIN_URL=https://github.com/webrtc-sdk/android/releases/download/v${VERSION}/libwebrtc.aar
1010

1111
echo "Downloading webrtc-sdk ${VERSION} binary for android."
12-
curl -f -L -O ${SDK_BIN_URL}
12+
curl -f -L -o "android/libwebrtc.aar" ${SDK_BIN_URL}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=io.github.webrtc-sdk
2-
VERSION_NAME=114.5735.05
2+
VERSION_NAME=114.5735.07
33
POM_NAME=WebRTC Android SDK
44
POM_DESCRIPTION=WebRTC Android SDK
55
POM_PACKAGING=aar

0 commit comments

Comments
 (0)