API Overview
Message Callbacks
Status Codes
- Android
- iOS
- JavaScript
- Flutter
- ReactNative
- HarmonyOS
By default, the SDK does not output logs to ADB. To output logs during development, pass the following parameters when initializing the SDK.
JIM.InitConfig initConfig = new JIM.InitConfig.Builder()
.setJLogConfig(new JLogConfig.Builder(getApplicationContext()).setLogConsoleLevel(JLogLevel.JLogLevelVerbose).build())
.build();
JIM.getInstance().init(this, "appKey", initConfig);
Filter SDK logs by the JLogger keyword.
By default, the SDK does not output logs to the console. To output logs during development, configure this before initializing the SDK.
[JIM.shared setConsoleLogLevel:JLogLevelVerbose];
Filter SDK logs by the JLogger keyword.
React Native SDK logs are output through the Metro console. The SDK outputs logs in development environments.
Filter the console by the JuggleIM keyword to view SDK logs.
// The SDK automatically prints logs in development environments
// View them in the Metro console