File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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```
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ VERSION=`grep -o 'VERSION_NAME=.*' gradle.properties | cut -f2- -d=`
99SDK_BIN_URL=https://github.com/webrtc-sdk/android/releases/download/v${VERSION} /libwebrtc.aar
1010
1111echo " 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}
Original file line number Diff line number Diff line change 11GROUP =io.github.webrtc-sdk
2- VERSION_NAME =114.5735.05
2+ VERSION_NAME =114.5735.07
33POM_NAME =WebRTC Android SDK
44POM_DESCRIPTION =WebRTC Android SDK
55POM_PACKAGING =aar
You can’t perform that action at this time.
0 commit comments