Skip to content

Commit 31a8207

Browse files
authored
Merge pull request #95 from awslabs/remove-reference-to-specific-vendor
remove reference to specific vendor
2 parents 0c5458e + 6f06a59 commit 31a8207

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
a. Build libwebrtc yourself, following https://webrtc.github.io/webrtc-org/native-code/android/#getting-the-code. After it's been built, place the `.aar` file in [libs](app/libs).
5353

54-
b. Acquire a pre-built binary of libwebrtc and import it. For example, https://central.sonatype.com/artifact/io.github.webrtc-sdk/android.
54+
b. Acquire a pre-built binary of libwebrtc and import it.
5555

5656
5. Click gradle __Sync__ and __Build__
5757
6. Run the demo application in simulator or in Android device (connected through USB).

app/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,10 @@ task checkForLibWebRTC() {
8282

8383
if (!webrtcFound) {
8484
throw new RuntimeException(
85-
"Unable to find Google WebRTC. You will need to either: (1) build libwebrtc on " +
85+
"Unable to find Google WebRTC. You will need to either: (1) Build libwebrtc on " +
8686
"your own following directions here https://webrtc.github.io/webrtc-org/native-code/android/ " +
8787
"to create the AAR, and place it in the app/libs folder so they can be properly referenced in the " +
88-
"build.gradle file or (2) acquire a pre-built binary for libwebrtc android " +
89-
"from any other means. For example, https://central.sonatype.com/artifact/io.github.webrtc-sdk/android provides " +
90-
"these libraries, or you can get them from somewhere else."
88+
"build.gradle file or (2) Reference another public repository which vends the android binaries.
9189
)
9290
}
9391
}

0 commit comments

Comments
 (0)