Skip to content

Commit

Permalink
fix(lib): force to load libcrypto and libssl before loading `rtmp…
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Feb 12, 2024
1 parent f64c97c commit d7eb771
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/src/main/java/video/api/rtmpdroid/RtmpNativeLoader.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ package video.api.rtmpdroid
*/
object RtmpNativeLoader {
init {
System.loadLibrary("crypto")
System.loadLibrary("ssl")
System.loadLibrary("rtmpdroid")
}
}

0 comments on commit d7eb771

Please sign in to comment.