Skip to content
Open
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
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
7 changes: 6 additions & 1 deletion webrtc-android-framework/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ rtc_use_h264=true
rtc_include_tests=false
is_debug=false

# set 16kb Alignment for build
in libWebRTC/src/BUILD.gn set
`
ldflags = ["-Wl,-z,max-page-size=16384"]
`
# Java source files that needs to be copied from branch:

src/sdk/android/api
Expand All @@ -37,4 +42,4 @@ build_directory/gen/api/priority_enums.srcjar


VideoFrameBufferType.java. It's under gen/sdk/android/video_api_java/generated_java/input_srcjars/org/webrtc
Priority.java and NetworkPreference.java is under gen/sdk/android/peerconnection_java/generated_java/input_srcjars/org/webrtc
Priority.java and NetworkPreference.java is under gen/sdk/android/peerconnection_java/generated_java/input_srcjars/org/webrtc
4 changes: 2 additions & 2 deletions webrtc-android-framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ tasks.withType(Test) {

task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest','createDebugCoverageReport']) {
reports {
xml.enabled = true
html.enabled = true
xml.required = true
html.required = true
}

def fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', '**/*Test*.*', 'android/**/*.*']
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
9 changes: 7 additions & 2 deletions webrtc-android-sample-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ android {
pickFirst 'lib/armeabi-v7a/libyuv.so'
}
*/
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -75,8 +80,8 @@ tasks.withType(Test) {
task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest','connectedDebugAndroidTest']) {

reports {
xml.enabled = true
html.enabled = true
xml.required = true
html.required = true
}

def fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', '**/*Test*.*', 'android/**/*.*']
Expand Down
Loading