You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,27 @@ Add the following dependency to your `pom.xml`:
46
46
</dependency>
47
47
```
48
48
49
+
Note about native library classifiers:
50
+
- The webrtc-java artifact will automatically add the dependency for the native library artifact matching the currently running operating system and architecture at runtime.
51
+
- If you encounter issues loading the native library "webrtc-java", you can declare the platform-specific classifier explicitly. For example, for Windows 64-Bit:
52
+
53
+
```xml
54
+
<dependency>
55
+
<groupId>dev.onvoid.webrtc</groupId>
56
+
<artifactId>webrtc-java</artifactId>
57
+
<version>{{VERSION}}</version>
58
+
<classifier>windows-x86_64</classifier>
59
+
</dependency>
60
+
```
61
+
62
+
Complete list of available classifiers:
63
+
- windows-x86_64
64
+
- macos-x86_64
65
+
- macos-aarch64
66
+
- linux-x86_64
67
+
- linux-aarch64
68
+
- linux-aarch32
69
+
49
70
#### Using SNAPSHOT Versions
50
71
51
72
If you want to use the latest development version, you can use a SNAPSHOT release:
0 commit comments