Fix bug
This commit is contained in:
@@ -3,9 +3,6 @@ version '1.0'
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
maven {
|
||||
url 'https://open-im-online.rentsoft.cn:51000/repository/maven2/'
|
||||
}
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
@@ -17,9 +14,7 @@ buildscript {
|
||||
|
||||
rootProject.allprojects {
|
||||
repositories {
|
||||
maven {
|
||||
url 'https://open-im-online.rentsoft.cn:51000/repository/maven2/'
|
||||
}
|
||||
maven { url 'https://open-im-online.rentsoft.cn:51000/repository/maven2/' }
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
@@ -39,5 +34,5 @@ android {
|
||||
}
|
||||
}
|
||||
dependencies {
|
||||
implementation 'io.openim:core-sdk:2.3.4-rc3@aar'
|
||||
api 'io.openim:core-sdk:2.3.4-rc4@aar'
|
||||
}
|
||||
@@ -162,4 +162,13 @@ public class ConversationManager extends BaseManager {
|
||||
int2long(methodCall, "status")
|
||||
);
|
||||
}
|
||||
|
||||
public void setOneConversationBurnDuration(MethodCall methodCall, MethodChannel.Result result) {
|
||||
Open_im_sdk.setOneConversationBurnDuration(
|
||||
new OnBaseListener(result, methodCall),
|
||||
value(methodCall, "operationID"),
|
||||
value(methodCall, "conversationID"),
|
||||
value(methodCall, "burnDuration")
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user