Package im.zego.zegoexpress.entity
Class ZegoEngineConfig
- java.lang.Object
-
- im.zego.zegoexpress.entity.ZegoEngineConfig
-
public class ZegoEngineConfig extends java.lang.Object
Advanced engine configuration.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.HashMap<java.lang.String,java.lang.String>
advancedConfig
Other special function switches, if not set, no special function will be used by default.boolean
enableExtractLibFromAPK
Available since: 3.12.0.ZegoLogConfig
logConfig
Deprecated.This property has been deprecated since version 2.3.0, please use the [setLogConfig] function instead.java.lang.String
soFullPath
Dynamic shared library (.so) path.
-
Constructor Summary
Constructors Constructor Description ZegoEngineConfig()
-
-
-
Field Detail
-
logConfig
@Deprecated public ZegoLogConfig logConfig
Deprecated.This property has been deprecated since version 2.3.0, please use the [setLogConfig] function instead.
-
advancedConfig
public java.util.HashMap<java.lang.String,java.lang.String> advancedConfig
Other special function switches, if not set, no special function will be used by default. Please contact ZEGO technical support before use.
-
soFullPath
public java.lang.String soFullPath
Dynamic shared library (.so) path. For developers who need to dynamically load the shared library, the default is empty string, that is to use the project embed shared library.
-
enableExtractLibFromAPK
public boolean enableExtractLibFromAPK
Available since: 3.12.0. Description: When using the dynamic loading feature, if loading the dynamic libraries specified by [soFullPath] fails, is it permissible to extract the dynamic libraries of Zego Express SDK from the APK and load them?
-
-