Update SDK to 1.1.4

This commit is contained in:
hrxiang 2021-11-11 11:33:31 +08:00
parent 5bafe70ef4
commit e18bbc567a
8 changed files with 4 additions and 3 deletions

View File

@ -51,5 +51,5 @@ android {
}
}
dependencies {
implementation 'io.openim:client-sdk:1.1.3@aar'
implementation 'io.openim:client-sdk:1.1.4@aar'
}

View File

@ -371,8 +371,9 @@ class IMManager {
}
///
void setSdkLog({required bool enable}) {
_channel.invokeMethod('setSdkLog', _buildParam({'sdkLog': enable ? 0 : 1}));
void enabledSDKLog({required bool enabled}) {
_channel.invokeMethod(
'setSdkLog', _buildParam({'sdkLog': enabled ? 0 : 1}));
}
///