Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/talk-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Krüger <t@timkrueger.me>2022-01-20 20:05:24 +0300
committerTim Krüger <t@timkrueger.me>2022-02-23 13:34:30 +0300
commitbad5b5f9bccae7f88eb533cf900094956487849f (patch)
treed11be888d1d6f11512d009587d51cc94da6808b1 /scripts
parent3af4f368cb25baacab462fe4d0260f0bd7f8d87f (diff)
Update WebRTC library
The updated libwebrtc will be load from the talk-clients-webrtc repository [1] and not from a dependency repository. The 'lint' task must now depend on the 'perBuild' task to make sure that the WebRTC library is downloaded from the configured URL. To get the new version to work a change is needed because of this announcement: > Google is planning to transition Chrome’s WebRTC implementation from the > current SDP format (called “Plan B”) to a standards conformant format > (“Unified Plan”, draft-ietf-rtcweb-jsep) over the next couple of quarters. > > - [2] Currently we are in phase 4 of the transition [3]. So actually 'Plan B' must be used to avoid bigger changes to our code base at this time. But 'Plan B' is depracted and will be removed in phase 5 of the transition [4]. Resolves: #1773 See: - [1] https://github.com/nextcloud-releases/talk-clients-webrtc - [2] https://webrtc.org/getting-started/unified-plan-transition-guide - [3] https://webrtc.org/getting-started/unified-plan-transition-guide#phase_4_make_%E2%80%9Cplan_b%E2%80%9D_throw - [4] https://webrtc.org/getting-started/unified-plan-transition-guide#phase_5_remove_%E2%80%9Cplan_b%E2%80%9D Signed-off-by: Tim Krüger <t@timkrueger.me>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/analysis/lint-up.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/analysis/lint-up.rb b/scripts/analysis/lint-up.rb
index 245866521..44eb132d8 100644
--- a/scripts/analysis/lint-up.rb
+++ b/scripts/analysis/lint-up.rb
@@ -56,12 +56,12 @@ end
# run Lint
puts "running Lint..."
-system './gradlew --console=plain clean lintGplayDebug'
+system './gradlew --console=plain lintGplayDebug'
# confirm that Lint ran w/out error
result = $?.to_i
if result != 0
- puts "FAIL: failed to run ./gradlew --console=plain clean lintGplayDebug"
+ puts "FAIL: failed to run ./gradlew --console=plain lintGplayDebug"
exit 1
end