RtcEngineConfig
Configurations for the RtcEngineConfig instance.
public class RtcEngineConfig { public IRtcEngineEventHandler mEventHandler; public Context mContext; public String mAppId; public int mAreaCode; public int mChannelProfile; public int mAudioScenario; public boolean mAutoRegisterAgoraExtensions; public List<String> mExtensionList; public IMediaExtensionObserver mExtensionObserver; public LogConfig mLogConfig; public String mNativeLibPath; public boolean mDomainLimit; public void addExtension(String providerName) { mExtensionList.add(providerName); } }
Attributes
- mEventHandler
- The event handler for RtcEngine. See IRtcEngineEventHandler.
- mAppId
- The App ID issued by Agora for your project. Only users in apps with the same App ID can join the same channel and communicate with each other. An App ID can only be used to create one RtcEngine instance. To change your App ID, call destroy to destroy the current RtcEngine instance, and then create a new one.
- mContext
-
The context of Android Activity.
- mNativeLibPath
-
Specifies the storage directory for the
.so
files. The storage directory must be a valid and private directory of the app, which can be obtained usingContext.getDir()
.- If you set this parameter, the SDK automatically loads the
.so
files in the directory you specify, so that the app dynamically loads the required.so
files when it runs, thereby reducing the package size. - If you do not set this parameter or set it to null, the SDK loads the
.so
files from the default app'snative unreal bpLibraryPath
when compiling the app, which increases the package size compared to the previous method.
Attention:- This method is applicable when you integrate the SDK manually but not when you integrate the SDK with Maven Central or JitPack.
- Ensure the specified directory exists; otherwise, the RtcEngine initialization fails.
- If you set this parameter, the SDK automatically loads the
- mChannelProfile
-
The channel profile.
- CHANNEL_PROFILE_COMMUNICATION(0): Communication. Agora recommends using the live streaming profile for a better audio and video experience.
- CHANNEL_PROFILE_LIVE_BROADCASTING(1): (Default) Live streaming.
- CHANNEL_PROFILE_GAME(2): Gaming.
- Deprecated:
- Use CHANNEL_PROFILE_LIVE_BROADCASTING instead.
- CHANNEL_PROFILE_CLOUD_GAMING(3): Interaction. The scenario is optimized for latency. Use this profile if the use case requires frequent interactions between users.
- Deprecated:
- Use CHANNEL_PROFILE_LIVE_BROADCASTING instead.
- mAudioScenario
- The audio scenarios. Under different audio scenarios, the device uses different volume types.
AUDIO_SCENARIO_DEFAULT
(0): (Default) Automatic scenario, where the SDK chooses the appropriate audio quality according to the user role and audio route.AUDIO_SCENARIO_GAME_STREAMING
(3): High-quality audio scenario, where users mainly play music.AUDIO_SCENARIO_CHATROOM
(5): Chatroom scenario, where users need to frequently switch the user role or mute and unmute the microphone.AUDIO_SCENARIO_CHORUS
(7): Real-time chorus scenario, where users have good network conditions and require ultra-low latency.Attention: Before using this enumeration, you need to call getAudioDeviceInfo to see whether the audio device supports ultra-low-latency capture and playback. To experience ultra-low latency, you need to ensure that your audio device supports ultra-low latency (isLowLatencyAudioSupported istrue
).AUDIO_SCENARIO_MEETING
(8): Meeting scenario that mainly involves the human voice.
- mAreaCode
- The region for connection. This is an advanced feature and applies to scenarios that have regional restrictions. For details on supported regions, see AreaCode. The area codes support bitwise operation.
- mLogConfig
-
Sets the log file size. See LogConfig.
By default, the SDK generates five SDK log files and five API call log files with the following rules:
- The SDK log files are:
agorasdk.log
,agorasdk.1.log
,agorasdk.2.log
,agorasdk.3.log
, andagorasdk.4.log
. - The API call log files are:
agoraapi.log
,agoraapi.1.log
,agoraapi.2.log
,agoraapi.3.log
, andagoraapi.4.log
. - The default size of each SDK log file and API log file is 2,048 KB. These log files are encoded in UTF-8.
- The SDK writes the latest logs in
agorasdk.log
oragoraapi.log
. - When
agorasdk.log
is full, the SDK processes the log files in the following order:- Delete the
agorasdk.4.log
file (if any). - Rename
agorasdk.3.log
toagorasdk.4.log
. - Rename
agorasdk.2.log
toagorasdk.3.log
. - Rename
agorasdk.1.log
toagorasdk.2.log
. - Create a new
agorasdk.log
file.
- Delete the
- The overwrite rules for the
agoraapi.log
file are the same as foragorasdk.log
.
- The SDK log files are:
- mExtensionList
- Extension libraries.
- mExtensionObserver
- The IMediaExtensionObserver instance.
- mDomainLimit
-
Whether to enable domain name restriction:
true
: Enables the domain name restriction. This value is suitable for scenarios where IoT devices use IoT cards for network access. The SDK will only connect to servers in the domain name or IP whitelist that has been reported to the operator.false
: (Default) Disables the domain name restriction. This value is suitable for most common scenarios.
- mAutoRegisterAgoraExtensions
-
Whether to automatically register the Agora extensions when initializing RtcEngine:
true
: (Default) Automatically register the Agora extensions when initializing RtcEngine.false
: Do not register the Agora extensions when initializing RtcEngine. You need to call enableExtension to register the Agora extensions.
Method
- addExtension
- Adds the extension. See addExtension.