• 此项目
    • 正在载入...
  • Sign in

xuning / livekitAndroidXuningTest

96x96
转到一个项目
Toggle navigation
  • 项目
  • 群组
  • 代码片段
  • 帮助
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • livekitAndroidXuningTest
  • ..
  • webrtc
  • NativeLibraryLoaderHelper.kt
  • session migration (#40) · eb2246d5 ...
    eb2246d5 浏览文件
    * update protocol repo
    
    * session migration
    
    * Simulate Scenario debug menu
    
    * some tests cleanup
    
    * fix reconnection implementation
    
    * fix not renegotiating publisher after migration
    
    * clean up dev url/token
    
    * bump ice connect timeout
    davidliu authored 2022-01-18 20:43:14 -0800
NativeLibraryLoaderHelper.kt 191 字节
原文件 审查 历史 永久链接
1 2 3 4 5 6 7 8 9
package org.webrtc

object NativeLibraryLoaderTestHelper {
    fun initialize() {
        if (!NativeLibrary.isLoaded()) {
            NativeLibrary.initialize({ true }, "")
        }
    }
}