webrtc-java icon indicating copy to clipboard operation
webrtc-java copied to clipboard

project fails to initialize after specifying the platform

Open Lyotoc opened this issue 2 months ago • 0 comments

Describe the bug

  1. If you do not use classifier to specify the platform, an error will be reported that the corresponding implementation cannot be found mvn dependency is as follows
        <dependency>
            <groupId>dev.onvoid.webrtc</groupId>
            <artifactId>webrtc-java</artifactId>
            <version>0.14.0</version>
        </dependency>

the error is as follows

Image 2. If classifier is specified, a missing dependency error will occur. mvn dependency is as follows
        <dependency>
            <groupId>dev.onvoid.webrtc</groupId>
            <artifactId>webrtc-java</artifactId>
            <version>0.14.0</version>
            <classifier>windows-x86_64</classifier>
        </dependency>

Opening the Maven dependencies, you can see there is only one dll file.

Image Image

Desktop (please complete the following information):

  • OS: windows 11
  • Version 26100.4061

Lyotoc avatar Oct 27 '25 11:10 Lyotoc