Initialization
Before using the capabilities of IMLib, you must first call the initialization interface of IMLib, and ensure that this interface is called only once during the entire lifecycle of the application.
The App Key is a necessary condition for using IMLib to develop instant messaging features and serves as the unique identifier of the application. Before integrating and using IMLib, make sure to register and obtain your exclusive App Key
through the Console.
tip
Do not confuse the App Key for the development and production environments. Only when the App Key is the same can messages be exchanged between different users.
Use the init method for initialization and directly pass in the App Key.
// Application initialization, ensure this process is executed only once
RongIMLib.init({ appkey: '<Your-App-Key>' });
Parameter | Type | Required | Description | Minimum Version | Deprecated Version |
---|---|---|---|---|---|
appkey | String | Yes | The unique identifier of the application | 3.0.0 | |
areaCode | AreaCode | No | Area code. When no configuration is passed, the SDK defaults to connecting to the Beijing Data Center. If your App Key belongs to the Singapore Data Center or North America Data Center, you must pass a valid area code configuration. For details, refer to the knowledge base document Overseas Data Center Usage Guide. | 5.7.9 | |
logOutputLevel | EnableLogL | No | Log printing level, default is EnableLogL.WARN | 5.6.0 |