Compare commits
40 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7ed7033716 | ||
|
|
c4c87f34fc | ||
|
|
5028e0ee32 | ||
|
|
bf500772cb | ||
|
|
22fde157ba | ||
|
|
55fa48dbe4 | ||
|
|
9ba6c2a92f | ||
|
|
7b577ec8b8 | ||
|
|
78979b424b | ||
|
|
bd76c29f15 | ||
|
|
9998f9b99c | ||
|
|
50bf41df51 | ||
|
|
7af14f995c | ||
|
|
3c28242303 | ||
|
|
b443caabc5 | ||
|
|
50dcfcf495 | ||
|
|
e13c4c6658 | ||
|
|
95ececeba0 | ||
|
|
58fa80a2f8 | ||
|
|
f929c73d09 | ||
|
|
1b70214455 | ||
|
|
6573f03e96 | ||
|
|
8852275b1e | ||
|
|
80a8fab891 | ||
|
|
ea82c50d79 | ||
|
|
70423d9756 | ||
|
|
d02be57c1e | ||
|
|
239e111ee4 | ||
|
|
5d88b4e5d1 | ||
|
|
a8942269b4 | ||
|
|
408f12eb57 | ||
|
|
875dbf5bb2 | ||
|
|
a091534d2c | ||
|
|
3263ebb46f | ||
|
|
a3752065fa | ||
|
|
fb56f7747a | ||
|
|
b534ef0fb6 | ||
|
|
91b0f4eb00 | ||
|
|
bd210e74cb | ||
|
|
0acd81bd70 |
12
CHANGELOG.md
@@ -1,3 +1,15 @@
|
|||||||
|
## 3.8.2
|
||||||
|
|
||||||
|
- [Bug fixes and performance enhancements.](https://github.com/openimsdk/openim-sdk-core/releases/tag/v3.8.2)
|
||||||
|
|
||||||
|
## 3.8.1+2
|
||||||
|
|
||||||
|
- [Bug fixes and performance enhancements.](https://github.com/openimsdk/openim-sdk-core/releases/tag/v3.8.1)
|
||||||
|
|
||||||
|
## 3.8.1+1
|
||||||
|
|
||||||
|
- [Bug fixes and performance enhancements.](https://github.com/openimsdk/openim-sdk-core/releases/tag/v3.8.1)
|
||||||
|
|
||||||
## 3.8.1
|
## 3.8.1
|
||||||
|
|
||||||
- [Bug fixes and performance enhancements.](https://github.com/openimsdk/openim-sdk-core/releases/tag/v3.8.1)
|
- [Bug fixes and performance enhancements.](https://github.com/openimsdk/openim-sdk-core/releases/tag/v3.8.1)
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ version '1.0'
|
|||||||
|
|
||||||
def dir = getCurrentProjectDir()
|
def dir = getCurrentProjectDir()
|
||||||
|
|
||||||
// 将aar放到libs,本地仓库替换远程仓库
|
|
||||||
def getCurrentProjectDir() {
|
def getCurrentProjectDir() {
|
||||||
String result = ""
|
String result = ""
|
||||||
rootProject.allprojects { project ->
|
rootProject.allprojects { project ->
|
||||||
@@ -16,20 +15,25 @@ def getCurrentProjectDir() {
|
|||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
||||||
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
||||||
|
maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' }
|
||||||
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.5.4'
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rootProject.allprojects {
|
rootProject.allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
// 将aar放到libs,本地仓库替换远程仓库
|
maven {
|
||||||
// maven { url "$dir/libs" }
|
url 'http://192.168.77.132:8081/repository/mvn2-group'
|
||||||
maven { url 'https://open-im-online.rentsoft.cn:51000/repository/maven2/' }
|
allowInsecureProtocol true
|
||||||
|
}
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
@@ -38,10 +42,13 @@ rootProject.allprojects {
|
|||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 30
|
compileSdkVersion 34
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
|
ndk {
|
||||||
|
abiFilters "arm64-v8a","x86" // 根据需要添加其他 ABI
|
||||||
|
}
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
@@ -50,7 +57,5 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// 本地依赖,现将aar复制到libs/io/openim/core-sdk/0.0.1/ 下,命名core-sdk-0.0.1.aar
|
implementation 'com.openim:sdkcore:1.0.14'
|
||||||
// implementation 'io.openim:core-sdk:0.0.1@aar'
|
|
||||||
implementation 'io.openim:core-sdk:3.8.1@aar'
|
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
|
#Tue Nov 12 14:22:37 CST 2024
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-7.4-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ import io.openim.flutter_openim_sdk.manager.GroupManager;
|
|||||||
import io.openim.flutter_openim_sdk.manager.IMManager;
|
import io.openim.flutter_openim_sdk.manager.IMManager;
|
||||||
import io.openim.flutter_openim_sdk.manager.MessageManager;
|
import io.openim.flutter_openim_sdk.manager.MessageManager;
|
||||||
import io.openim.flutter_openim_sdk.manager.UserManager;
|
import io.openim.flutter_openim_sdk.manager.UserManager;
|
||||||
|
import io.openim.flutter_openim_sdk.manager.ChannelManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* FlutterOpenimSdkPlugin
|
* FlutterOpenimSdkPlugin
|
||||||
@@ -42,6 +42,7 @@ public class FlutterOpenimSdkPlugin implements FlutterPlugin, MethodCallHandler,
|
|||||||
private static MessageManager messageManager;
|
private static MessageManager messageManager;
|
||||||
private static ConversationManager conversationManager;
|
private static ConversationManager conversationManager;
|
||||||
private static GroupManager groupManager;
|
private static GroupManager groupManager;
|
||||||
|
private static ChannelManager channelManager;
|
||||||
private static Activity activity;
|
private static Activity activity;
|
||||||
private static Context context;
|
private static Context context;
|
||||||
private ConnectivityListener connectivityListener;
|
private ConnectivityListener connectivityListener;
|
||||||
@@ -55,6 +56,8 @@ public class FlutterOpenimSdkPlugin implements FlutterPlugin, MethodCallHandler,
|
|||||||
FlutterOpenimSdkPlugin.messageManager = new MessageManager();
|
FlutterOpenimSdkPlugin.messageManager = new MessageManager();
|
||||||
FlutterOpenimSdkPlugin.conversationManager = new ConversationManager();
|
FlutterOpenimSdkPlugin.conversationManager = new ConversationManager();
|
||||||
FlutterOpenimSdkPlugin.groupManager = new GroupManager();
|
FlutterOpenimSdkPlugin.groupManager = new GroupManager();
|
||||||
|
FlutterOpenimSdkPlugin.channelManager = new ChannelManager();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,14 @@ public class OnAdvancedMsgListener implements open_im_sdk_callback.OnAdvancedMsg
|
|||||||
CommonUtil.emitEvent("advancedMsgListener", "onNewRecvMessageRevoked", values);
|
CommonUtil.emitEvent("advancedMsgListener", "onNewRecvMessageRevoked", values);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNewRecvMessageEdited(String s) {
|
||||||
|
final Map<String, String> values = new ArrayMap<>();
|
||||||
|
values.put("id", id);
|
||||||
|
values.put("messageEdited", s);
|
||||||
|
CommonUtil.emitEvent("advancedMsgListener", "onNewRecvMessageEdited", values);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onRecvC2CReadReceipt(String s) {
|
public void onRecvC2CReadReceipt(String s) {
|
||||||
final Map<String, String> values = new ArrayMap<>();
|
final Map<String, String> values = new ArrayMap<>();
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
package io.openim.flutter_openim_sdk.listener;
|
||||||
|
|
||||||
|
import io.openim.flutter_openim_sdk.util.CommonUtil;
|
||||||
|
|
||||||
|
public class OnChannelListener implements open_im_sdk_callback.OnChannelListener {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChannelDismissed(String s) {
|
||||||
|
CommonUtil.emitEvent("channelListener", "onChannelDismissed", s);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChannelInfoChanged(String s) {
|
||||||
|
CommonUtil.emitEvent("channelListener", "onChannelInfoChanged", s);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChannelMemberAdded(String s) {
|
||||||
|
CommonUtil.emitEvent("channelListener", "onChannelMemberAdded", s);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChannelMemberDeleted(String s) {
|
||||||
|
CommonUtil.emitEvent("channelListener", "onChannelMemberDeleted", s);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChannelMemberInfoChanged(String s) {
|
||||||
|
CommonUtil.emitEvent("channelListener", "onChannelMemberInfoChanged", s);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
package io.openim.flutter_openim_sdk.manager;
|
||||||
|
|
||||||
|
import io.flutter.plugin.common.MethodCall;
|
||||||
|
import io.flutter.plugin.common.MethodChannel;
|
||||||
|
import io.openim.flutter_openim_sdk.listener.OnBaseListener;
|
||||||
|
import io.openim.flutter_openim_sdk.listener.OnChannelListener;
|
||||||
|
import open_im_sdk.Open_im_sdk;
|
||||||
|
|
||||||
|
public class ChannelManager extends BaseManager {
|
||||||
|
|
||||||
|
public void setChannelListener(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.setChannelListener(new OnChannelListener());
|
||||||
|
|
||||||
|
result.success(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void getChannelMembersInfo(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.getSpecifiedChannelMembersInfo(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
|
jsonValue(methodCall, "userIDList")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void getChannelMemberList(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.getChannelMemberList(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
|
value(methodCall, "filter"),
|
||||||
|
value(methodCall, "offset"),
|
||||||
|
value(methodCall, "count")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void getChannelsInfo(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.getSpecifiedChannelsInfo(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
jsonValue(methodCall, "channelIDList")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void joinChannel(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.joinChannel(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
|
value(methodCall, "reason"),
|
||||||
|
value(methodCall, "joinSource"),
|
||||||
|
value(methodCall, "ex")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void quitChannel(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.quitChannel(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public void changeChannelMute(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.changeChannelMute(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
|
value(methodCall, "mute")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void changeChannelMemberMute(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.changeChannelMemberMute(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
|
value(methodCall, "userID"),
|
||||||
|
int2long(methodCall, "seconds")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public void isJoinChannel(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.isJoinChannel(new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void getUsersInChannel(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.getUsersInChannel(new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
|
jsonValue(methodCall, "userIDs")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -27,6 +27,7 @@ public class MessageManager extends BaseManager {
|
|||||||
jsonValue(methodCall, "message"),
|
jsonValue(methodCall, "message"),
|
||||||
value(methodCall, "userID"),
|
value(methodCall, "userID"),
|
||||||
value(methodCall, "groupID"),
|
value(methodCall, "groupID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
jsonValue(methodCall, "offlinePushInfo"),
|
jsonValue(methodCall, "offlinePushInfo"),
|
||||||
value(methodCall, "isOnlineOnly")
|
value(methodCall, "isOnlineOnly")
|
||||||
);
|
);
|
||||||
@@ -41,6 +42,16 @@ public class MessageManager extends BaseManager {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void editMessage(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.editMessage(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
value(methodCall, "conversationID"),
|
||||||
|
value(methodCall, "clientMsgID"),
|
||||||
|
jsonValue(methodCall, "message")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public void deleteMessageFromLocalStorage(MethodCall methodCall, MethodChannel.Result result) {
|
public void deleteMessageFromLocalStorage(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
Open_im_sdk.deleteMessageFromLocalStorage(
|
Open_im_sdk.deleteMessageFromLocalStorage(
|
||||||
new OnBaseListener(result, methodCall),
|
new OnBaseListener(result, methodCall),
|
||||||
@@ -89,6 +100,7 @@ public class MessageManager extends BaseManager {
|
|||||||
value(methodCall, "operationID"),
|
value(methodCall, "operationID"),
|
||||||
jsonValue(methodCall, "message"),
|
jsonValue(methodCall, "message"),
|
||||||
value(methodCall, "groupID"),
|
value(methodCall, "groupID"),
|
||||||
|
value(methodCall, "channelID"),
|
||||||
value(methodCall, "senderID")
|
value(methodCall, "senderID")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -339,6 +351,7 @@ public class MessageManager extends BaseManager {
|
|||||||
jsonValue(methodCall, "message"),
|
jsonValue(methodCall, "message"),
|
||||||
value(methodCall, "userID"),
|
value(methodCall, "userID"),
|
||||||
value(methodCall, "groupID"),
|
value(methodCall, "groupID"),
|
||||||
|
value(methodCall, "channelId"),
|
||||||
jsonValue(methodCall, "offlinePushInfo"),
|
jsonValue(methodCall, "offlinePushInfo"),
|
||||||
value(methodCall, "isOnlineOnly")
|
value(methodCall, "isOnlineOnly")
|
||||||
);
|
);
|
||||||
@@ -375,6 +388,16 @@ public class MessageManager extends BaseManager {
|
|||||||
jsonValue(methodCall, "fileElem")));
|
jsonValue(methodCall, "fileElem")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void fetchSurroundingMessages(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
|
Open_im_sdk.fetchSurroundingMessages(
|
||||||
|
new OnBaseListener(result, methodCall),
|
||||||
|
value(methodCall, "operationID"),
|
||||||
|
jsonValue(methodCall, "message"),
|
||||||
|
int2long(methodCall, "before"),
|
||||||
|
int2long(methodCall, "after"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public void setCustomBusinessListener(MethodCall methodCall, MethodChannel.Result result) {
|
public void setCustomBusinessListener(MethodCall methodCall, MethodChannel.Result result) {
|
||||||
Open_im_sdk.setCustomBusinessListener(new OnCustomBusinessListener());
|
Open_im_sdk.setCustomBusinessListener(new OnCustomBusinessListener());
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,25 @@ public class CommonUtil {
|
|||||||
res.put("errMsg", errMsg);
|
res.put("errMsg", errMsg);
|
||||||
}
|
}
|
||||||
Log.i("F-OpenIMSDK(native call flutter)", "thread: " + threadName + " { method:" + method + ", type:" + type + " }");
|
Log.i("F-OpenIMSDK(native call flutter)", "thread: " + threadName + " { method:" + method + ", type:" + type + " }");
|
||||||
FlutterOpenimSdkPlugin.channel.invokeMethod(method, res);
|
FlutterOpenimSdkPlugin.channel.invokeMethod(method, res, new MethodChannel.Result() {
|
||||||
|
@Override
|
||||||
|
public void success(Object result) {
|
||||||
|
// 处理成功返回值
|
||||||
|
Log.i("F-OpenIMSDK(native call flutter)", "Method " + method + " returned: ");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void error(String errorCode, String errorMessage, Object errorDetails) {
|
||||||
|
// 处理错误
|
||||||
|
Log.e("F-OpenIMSDK(native call flutter)", "Method " + method + " error: " + errorCode + ", " + errorMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void notImplemented() {
|
||||||
|
// 处理未实现的方法
|
||||||
|
Log.w("F-OpenIMSDK(native call flutter)", "Method " + method + " not implemented");
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
5
example/.gitignore
vendored
@@ -8,6 +8,7 @@
|
|||||||
.buildlog/
|
.buildlog/
|
||||||
.history
|
.history
|
||||||
.svn/
|
.svn/
|
||||||
|
migrate_working_dir/
|
||||||
|
|
||||||
# IntelliJ related
|
# IntelliJ related
|
||||||
*.iml
|
*.iml
|
||||||
@@ -26,14 +27,10 @@
|
|||||||
.dart_tool/
|
.dart_tool/
|
||||||
.flutter-plugins
|
.flutter-plugins
|
||||||
.flutter-plugins-dependencies
|
.flutter-plugins-dependencies
|
||||||
.packages
|
|
||||||
.pub-cache/
|
.pub-cache/
|
||||||
.pub/
|
.pub/
|
||||||
/build/
|
/build/
|
||||||
|
|
||||||
# Web related
|
|
||||||
lib/generated_plugin_registrant.dart
|
|
||||||
|
|
||||||
# Symbolication related
|
# Symbolication related
|
||||||
app.*.symbols
|
app.*.symbols
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,42 @@
|
|||||||
# This file should be version controlled and should not be manually edited.
|
# This file should be version controlled and should not be manually edited.
|
||||||
|
|
||||||
version:
|
version:
|
||||||
revision: b22742018b3edf16c6cadd7b76d9db5e7f9064b5
|
revision: "b0850beeb25f6d5b10426284f506557f66181b36"
|
||||||
channel: stable
|
channel: "stable"
|
||||||
|
|
||||||
project_type: app
|
project_type: app
|
||||||
|
|
||||||
|
# Tracks metadata for the flutter migrate command
|
||||||
|
migration:
|
||||||
|
platforms:
|
||||||
|
- platform: root
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
- platform: android
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
- platform: ios
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
- platform: linux
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
- platform: macos
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
- platform: web
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
- platform: windows
|
||||||
|
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
|
||||||
|
|
||||||
|
# User provided section
|
||||||
|
|
||||||
|
# List of Local paths (relative to this file) that should be
|
||||||
|
# ignored by the migrate tool.
|
||||||
|
#
|
||||||
|
# Files that are not part of the templates will be ignored by default.
|
||||||
|
unmanaged_files:
|
||||||
|
- 'lib/main.dart'
|
||||||
|
- 'ios/Runner.xcodeproj/project.pbxproj'
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# flutter_openim_sdk_example
|
# example
|
||||||
|
|
||||||
Demonstrates how to use the flutter_openim_sdk plugin.
|
A new Flutter project.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
@@ -8,9 +8,9 @@ This project is a starting point for a Flutter application.
|
|||||||
|
|
||||||
A few resources to get you started if this is your first Flutter project:
|
A few resources to get you started if this is your first Flutter project:
|
||||||
|
|
||||||
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
|
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
||||||
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
|
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
||||||
|
|
||||||
For help getting started with Flutter, view our
|
For help getting started with Flutter development, view the
|
||||||
[online documentation](https://flutter.dev/docs), which offers tutorials,
|
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
||||||
samples, guidance on mobile development, and a full API reference.
|
samples, guidance on mobile development, and a full API reference.
|
||||||
|
|||||||
28
example/analysis_options.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# This file configures the analyzer, which statically analyzes Dart code to
|
||||||
|
# check for errors, warnings, and lints.
|
||||||
|
#
|
||||||
|
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
|
||||||
|
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
|
||||||
|
# invoked from the command line by running `flutter analyze`.
|
||||||
|
|
||||||
|
# The following line activates a set of recommended lints for Flutter apps,
|
||||||
|
# packages, and plugins designed to encourage good coding practices.
|
||||||
|
include: package:flutter_lints/flutter.yaml
|
||||||
|
|
||||||
|
linter:
|
||||||
|
# The lint rules applied to this project can be customized in the
|
||||||
|
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
|
||||||
|
# included above or to enable additional rules. A list of all available lints
|
||||||
|
# and their documentation is published at https://dart.dev/lints.
|
||||||
|
#
|
||||||
|
# Instead of disabling a lint rule for the entire project in the
|
||||||
|
# section below, it can also be suppressed for a single line of code
|
||||||
|
# or a specific dart file by using the `// ignore: name_of_lint` and
|
||||||
|
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
|
||||||
|
# producing the lint.
|
||||||
|
rules:
|
||||||
|
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
||||||
|
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
|
||||||
|
|
||||||
|
# Additional information about this file can be found at
|
||||||
|
# https://dart.dev/guides/language/analysis-options
|
||||||
2
example/android/.gitignore
vendored
@@ -9,3 +9,5 @@ GeneratedPluginRegistrant.java
|
|||||||
# Remember to never publicly share your keystore.
|
# Remember to never publicly share your keystore.
|
||||||
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
|
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
|
||||||
key.properties
|
key.properties
|
||||||
|
**/*.keystore
|
||||||
|
**/*.jks
|
||||||
|
|||||||
@@ -1,69 +1,58 @@
|
|||||||
|
plugins {
|
||||||
|
id "com.android.application"
|
||||||
|
id "kotlin-android"
|
||||||
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||||
|
id "dev.flutter.flutter-gradle-plugin"
|
||||||
|
}
|
||||||
|
|
||||||
def localProperties = new Properties()
|
def localProperties = new Properties()
|
||||||
def localPropertiesFile = rootProject.file('local.properties')
|
def localPropertiesFile = rootProject.file("local.properties")
|
||||||
if (localPropertiesFile.exists()) {
|
if (localPropertiesFile.exists()) {
|
||||||
localPropertiesFile.withReader('UTF-8') { reader ->
|
localPropertiesFile.withReader("UTF-8") { reader ->
|
||||||
localProperties.load(reader)
|
localProperties.load(reader)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
def flutterVersionCode = localProperties.getProperty("flutter.versionCode")
|
||||||
if (flutterRoot == null) {
|
|
||||||
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
|
||||||
}
|
|
||||||
|
|
||||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
||||||
if (flutterVersionCode == null) {
|
if (flutterVersionCode == null) {
|
||||||
flutterVersionCode = '1'
|
flutterVersionCode = "1"
|
||||||
}
|
}
|
||||||
|
|
||||||
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
def flutterVersionName = localProperties.getProperty("flutter.versionName")
|
||||||
if (flutterVersionName == null) {
|
if (flutterVersionName == null) {
|
||||||
flutterVersionName = '1.0'
|
flutterVersionName = "1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
|
||||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 30
|
namespace = "com.example.example"
|
||||||
|
compileSdk = flutter.compileSdkVersion
|
||||||
|
ndkVersion = flutter.ndkVersion
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
applicationId "io.openim.flutter_openim_sdk_example"
|
applicationId = "com.example.example"
|
||||||
minSdkVersion 21
|
// You can update the following values to match your application needs.
|
||||||
targetSdkVersion 30
|
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
||||||
versionCode flutterVersionCode.toInteger()
|
minSdk = flutter.minSdkVersion
|
||||||
versionName flutterVersionName
|
targetSdk = flutter.targetSdkVersion
|
||||||
|
versionCode = flutterVersionCode.toInteger()
|
||||||
|
versionName = flutterVersionName
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
||||||
}
|
|
||||||
release {
|
release {
|
||||||
// TODO: Add your own signing config for the release build.
|
// TODO: Add your own signing config for the release build.
|
||||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||||
// signingConfig signingConfigs.debug
|
signingConfig = signingConfigs.debug
|
||||||
|
|
||||||
signingConfig signingConfigs.debug
|
|
||||||
|
|
||||||
minifyEnabled false
|
|
||||||
shrinkResources false
|
|
||||||
|
|
||||||
useProguard true
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories{
|
|
||||||
flatDir {
|
|
||||||
dirs 'libs'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
|
||||||
|
|
||||||
}
|
|
||||||
flutter {
|
flutter {
|
||||||
source '../..'
|
source = "../.."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
package="io.openim.flutter_openim_sdk_example">
|
<!-- The INTERNET permission is required for development. Specifically,
|
||||||
<!-- Flutter needs it to communicate with the running application
|
the Flutter tool needs it to communicate with the running application
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
-->
|
-->
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
package="io.openim.flutter_openim_sdk_example">
|
<application
|
||||||
<application
|
android:label="example"
|
||||||
android:label="flutter_openim_sdk_example"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/ic_launcher">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
|
android:exported="true"
|
||||||
android:launchMode="singleTop"
|
android:launchMode="singleTop"
|
||||||
|
android:taskAffinity=""
|
||||||
android:theme="@style/LaunchTheme"
|
android:theme="@style/LaunchTheme"
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||||
android:hardwareAccelerated="true"
|
android:hardwareAccelerated="true"
|
||||||
@@ -18,15 +20,6 @@
|
|||||||
android:name="io.flutter.embedding.android.NormalTheme"
|
android:name="io.flutter.embedding.android.NormalTheme"
|
||||||
android:resource="@style/NormalTheme"
|
android:resource="@style/NormalTheme"
|
||||||
/>
|
/>
|
||||||
<!-- Displays an Android View that continues showing the launch screen
|
|
||||||
Drawable until Flutter paints its first frame, then this splash
|
|
||||||
screen fades out. A splash screen is useful to avoid any visual
|
|
||||||
gap between the end of Android's launch screen and the painting of
|
|
||||||
Flutter's first frame. -->
|
|
||||||
<meta-data
|
|
||||||
android:name="io.flutter.embedding.android.SplashScreenDrawable"
|
|
||||||
android:resource="@drawable/launch_background"
|
|
||||||
/>
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
@@ -38,4 +31,15 @@
|
|||||||
android:name="flutterEmbedding"
|
android:name="flutterEmbedding"
|
||||||
android:value="2" />
|
android:value="2" />
|
||||||
</application>
|
</application>
|
||||||
|
<!-- Required to query activities that can process text, see:
|
||||||
|
https://developer.android.com/training/package-visibility and
|
||||||
|
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
|
||||||
|
|
||||||
|
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||||
|
<queries>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
||||||
|
<data android:mimeType="text/plain"/>
|
||||||
|
</intent>
|
||||||
|
</queries>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
package io.openim.flutter_openim_sdk_example;
|
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterActivity;
|
|
||||||
|
|
||||||
public class MainActivity extends FlutterActivity {
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package com.example.example
|
||||||
|
|
||||||
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
|
||||||
|
class MainActivity: FlutterActivity()
|
||||||
|
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 11 KiB |
@@ -3,14 +3,14 @@
|
|||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
Flutter draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
running.
|
running.
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
<item name="android:windowBackground">?android:colorBackground</item>
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
Flutter draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
running.
|
running.
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<item name="android:windowBackground">?android:colorBackground</item>
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
package="io.openim.flutter_openim_sdk_example">
|
<!-- The INTERNET permission is required for development. Specifically,
|
||||||
<!-- Flutter needs it to communicate with the running application
|
the Flutter tool needs it to communicate with the running application
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
-->
|
-->
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
|||||||
@@ -1,33 +1,16 @@
|
|||||||
buildscript {
|
|
||||||
repositories {
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' }
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' }
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
|
|
||||||
google()
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
classpath 'com.android.tools.build:gradle:3.5.1'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' }
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' }
|
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
|
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rootProject.buildDir = '../build'
|
rootProject.buildDir = "../build"
|
||||||
subprojects {
|
subprojects {
|
||||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||||
project.evaluationDependsOn(':app')
|
}
|
||||||
|
subprojects {
|
||||||
|
project.evaluationDependsOn(":app")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register("clean", Delete) {
|
tasks.register("clean", Delete) {
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
org.gradle.jvmargs=-Xmx1536M
|
org.gradle.jvmargs=-Xmx4G -XX:+HeapDumpOnOutOfMemoryError
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
#Fri Jun 23 08:50:38 CEST 2017
|
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip
|
||||||
|
|||||||
107
example/android/proguard-rules.pro
vendored
@@ -1,107 +0,0 @@
|
|||||||
#默认的proguard-android.txt已经增加了Annotation、native、view的setget方法、Activity参数为view的 方法、Enum枚举、Parcelable、R,此处不再写
|
|
||||||
#------------------------------------------通用区域----------------------------------------------------
|
|
||||||
#----------------------基本指令------------------------
|
|
||||||
-optimizationpasses 5
|
|
||||||
-dontusemixedcaseclassnames
|
|
||||||
-dontskipnonpubliclibraryclasses
|
|
||||||
-dontskipnonpubliclibraryclassmembers
|
|
||||||
-dontpreverify
|
|
||||||
-verbose
|
|
||||||
-printmapping proguardMapping.txt
|
|
||||||
-optimizations !code/simplification/cast,!field/*,!class/merging/*
|
|
||||||
-keepattributes *Annotation*,InnerClasses
|
|
||||||
-keepattributes Signature
|
|
||||||
-keepattributes SourceFile,LineNumberTable
|
|
||||||
|
|
||||||
#如果引用了v4或者v7包
|
|
||||||
-dontwarn android.support.**
|
|
||||||
-keep class android.support.** { *; }
|
|
||||||
-keep interface android.support.** { *; }
|
|
||||||
-keep public class * extends android.support.**
|
|
||||||
-dontwarn android.support.**
|
|
||||||
|
|
||||||
#如果引用了androidx包
|
|
||||||
-keep class com.google.android.material.** {*;}
|
|
||||||
-keep class androidx.** {*;}
|
|
||||||
-keep public class * extends androidx.**
|
|
||||||
-keep interface androidx.** {*;}
|
|
||||||
-dontwarn com.google.android.material.**
|
|
||||||
-dontnote com.google.android.material.**
|
|
||||||
-dontwarn androidx.**
|
|
||||||
|
|
||||||
#---------------------默认保留-------------------------
|
|
||||||
## 基础保留 ##
|
|
||||||
-keep public class * extends android.app.Fragment
|
|
||||||
-keep public class * extends android.app.Activity
|
|
||||||
-keep public class * extends android.app.Application
|
|
||||||
-keep public class * extends android.app.Service
|
|
||||||
-keep public class * extends android.content.BroadcastReceiver
|
|
||||||
-keep public class * extends android.content.ContentProvider
|
|
||||||
-keep public class * extends android.app.backup.BackupAgentHelper
|
|
||||||
-keep public class * extends android.preference.Preference
|
|
||||||
-keep public class com.android.vending.licensing.ILicensingService
|
|
||||||
|
|
||||||
-keep public class * extends android.view.View {
|
|
||||||
public <init>(android.content.Context);
|
|
||||||
public <init>(android.content.Context, android.util.AttributeSet);
|
|
||||||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
|
||||||
public void set*(...);
|
|
||||||
}
|
|
||||||
# 保持自定义控件类不被混淆
|
|
||||||
-keepclasseswithmembers class * {
|
|
||||||
public <init>(android.content.Context, android.util.AttributeSet);
|
|
||||||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
|
||||||
}
|
|
||||||
#保持自定义控件类不被混淆
|
|
||||||
-keepclassmembers class * extends android.app.Activity {
|
|
||||||
public void *(android.view.View);
|
|
||||||
}
|
|
||||||
-keepclassmembers enum * { # 保持枚举 enum 类不被混淆
|
|
||||||
public static **[] values();
|
|
||||||
public static ** valueOf(java.lang.String);
|
|
||||||
}
|
|
||||||
-keep class * implements android.os.Parcelable { # 保持 Parcelable 不被混淆
|
|
||||||
public static final android.os.Parcelable$Creator *;
|
|
||||||
}
|
|
||||||
-keep class * implements java.io.Serializable # 保持 Serializable 不被混淆
|
|
||||||
#保持 Serializable 不被混淆并且enum 类也不被混淆
|
|
||||||
-keepclassmembers class * implements java.io.Serializable {
|
|
||||||
static final long serialVersionUID;
|
|
||||||
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
|
||||||
!static !transient <fields>;
|
|
||||||
!private <fields>;
|
|
||||||
!private <methods>;
|
|
||||||
private void writeObject(java.io.ObjectOutputStream);
|
|
||||||
private void readObject(java.io.ObjectInputStream);
|
|
||||||
java.lang.Object writeReplace();
|
|
||||||
java.lang.Object readResolve();
|
|
||||||
}
|
|
||||||
#不混淆资源类
|
|
||||||
-keepclassmembers class **.R$* {
|
|
||||||
public static <fields>;
|
|
||||||
}
|
|
||||||
# 保持 native 方法不被混淆
|
|
||||||
-keepclasseswithmembernames class * {
|
|
||||||
native <methods>;
|
|
||||||
}
|
|
||||||
|
|
||||||
#WebView
|
|
||||||
-keepclassmembers class * extends android.webkit.WebView {*;}
|
|
||||||
-keepclassmembers class * extends android.webkit.WebViewClient {*;}
|
|
||||||
-keepclassmembers class * extends android.webkit.WebChromeClient {*;}
|
|
||||||
-keepclassmembers class * {
|
|
||||||
@android.webkit.JavascriptInterface <methods>;
|
|
||||||
}
|
|
||||||
|
|
||||||
-keep class androidx.lifecycle.DefaultLifecycleObserver
|
|
||||||
#-------------------------------------------项目定义区-------------------------------------------------
|
|
||||||
#im
|
|
||||||
-keep class io.openim.flutter_openim_sdk.** { *; }
|
|
||||||
#Flutter Wrapper
|
|
||||||
#-dontwarn io.flutter.**
|
|
||||||
#-keep class io.flutter.app.** { *; }
|
|
||||||
#-keep class io.flutter.plugin.** { *; }
|
|
||||||
#-keep class io.flutter.util.** { *; }
|
|
||||||
#-keep class io.flutter.view.** { *; }
|
|
||||||
#-keep class io.flutter.** { *; }
|
|
||||||
#-keep class io.flutter.plugins.** { *; }
|
|
||||||
@@ -1,11 +1,25 @@
|
|||||||
include ':app'
|
pluginManagement {
|
||||||
|
def flutterSdkPath = {
|
||||||
|
def properties = new Properties()
|
||||||
|
file("local.properties").withInputStream { properties.load(it) }
|
||||||
|
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||||
|
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||||
|
return flutterSdkPath
|
||||||
|
}()
|
||||||
|
|
||||||
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||||
def properties = new Properties()
|
|
||||||
|
|
||||||
assert localPropertiesFile.exists()
|
repositories {
|
||||||
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
plugins {
|
||||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||||
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
|
id "com.android.application" version "7.3.0" apply false
|
||||||
|
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
include ":app"
|
||||||
|
|||||||
1
example/ios/.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
**/dgph
|
||||||
*.mode1v3
|
*.mode1v3
|
||||||
*.mode2v3
|
*.mode2v3
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
|
|||||||
@@ -21,6 +21,6 @@
|
|||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.0</string>
|
<string>1.0</string>
|
||||||
<key>MinimumOSVersion</key>
|
<key>MinimumOSVersion</key>
|
||||||
<string>11.0</string>
|
<string>12.0</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# Uncomment this line to define a global platform for your project
|
# Uncomment this line to define a global platform for your project
|
||||||
|
# platform :ios, '12.0'
|
||||||
|
|
||||||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
|
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
|
||||||
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
||||||
@@ -31,6 +32,9 @@ target 'Runner' do
|
|||||||
use_modular_headers!
|
use_modular_headers!
|
||||||
|
|
||||||
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
|
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
|
||||||
|
target 'RunnerTests' do
|
||||||
|
inherit! :search_paths
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
post_install do |installer|
|
post_install do |installer|
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ PODS:
|
|||||||
- Flutter (1.0.0)
|
- Flutter (1.0.0)
|
||||||
- flutter_openim_sdk (0.0.1):
|
- flutter_openim_sdk (0.0.1):
|
||||||
- Flutter
|
- Flutter
|
||||||
- OpenIMSDKCore (= 3.8.1-rc.0)
|
- OpenIMSDKCore (= 3.8.2)
|
||||||
- OpenIMSDKCore (3.8.1-rc.0)
|
- OpenIMSDKCore (3.8.2)
|
||||||
|
|
||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
- Flutter (from `Flutter`)
|
- Flutter (from `Flutter`)
|
||||||
@@ -21,9 +21,9 @@ EXTERNAL SOURCES:
|
|||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
|
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
|
||||||
flutter_openim_sdk: 754e4ad0177918ce2c37dfba63973db26ce89c90
|
flutter_openim_sdk: 77bdd08fb8dda1644a0c150b8ba7324f11b32404
|
||||||
OpenIMSDKCore: 0c92e9e3eb2a91b6b6528e7781a1e28ed42bc518
|
OpenIMSDKCore: aaffd63079a874d9272b8b962598723cb8128d32
|
||||||
|
|
||||||
PODFILE CHECKSUM: d4ba08011ff3d270b662299a448a7c436eb30089
|
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
|
||||||
|
|
||||||
COCOAPODS: 1.14.3
|
COCOAPODS: 1.15.2
|
||||||
|
|||||||
@@ -8,14 +8,26 @@
|
|||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
||||||
|
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
|
||||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
||||||
|
3E0FE62DE2A4D4E61AC3FD02 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BB3D975831D21A8FACEF96B /* Pods_Runner.framework */; };
|
||||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
||||||
79CF11091A38454F94DA1EB4 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F48A41A58786A29BEEBCFE3 /* Pods_Runner.framework */; };
|
|
||||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
||||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
||||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
||||||
|
F32475A5B591900F07118022 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 119B0071FAB85FAD36937602 /* Pods_RunnerTests.framework */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
|
/* Begin PBXContainerItemProxy section */
|
||||||
|
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
|
||||||
|
isa = PBXContainerItemProxy;
|
||||||
|
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
|
||||||
|
proxyType = 1;
|
||||||
|
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
|
||||||
|
remoteInfo = Runner;
|
||||||
|
};
|
||||||
|
/* End PBXContainerItemProxy section */
|
||||||
|
|
||||||
/* Begin PBXCopyFilesBuildPhase section */
|
/* Begin PBXCopyFilesBuildPhase section */
|
||||||
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
||||||
isa = PBXCopyFilesBuildPhase;
|
isa = PBXCopyFilesBuildPhase;
|
||||||
@@ -30,16 +42,19 @@
|
|||||||
/* End PBXCopyFilesBuildPhase section */
|
/* End PBXCopyFilesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
|
119B0071FAB85FAD36937602 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
||||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
||||||
2F48A41A58786A29BEEBCFE3 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
|
||||||
|
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
||||||
3F8F3496860058CED33C418C /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
4D6806EF7C87F4A8E899A73E /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
564E6205C72C7CB32AC49601 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
|
5C84146D7BEE11433AA4DE9E /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
||||||
85A1617DD2AFC45DFFDD8B11 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
7D277EA428A8FDCA196F3196 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
8BB3D975831D21A8FACEF96B /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
||||||
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
||||||
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
@@ -47,26 +62,51 @@
|
|||||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||||
|
BD60456F5D1660BF5A90F9A1 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
F0FFA291A8BB24B66A6DCC8C /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
FA507785CCEA4423C40C3CCD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
|
1B803A0F046E9658A8FCEED0 /* Frameworks */ = {
|
||||||
|
isa = PBXFrameworksBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
F32475A5B591900F07118022 /* Pods_RunnerTests.framework in Frameworks */,
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
79CF11091A38454F94DA1EB4 /* Pods_Runner.framework in Frameworks */,
|
3E0FE62DE2A4D4E61AC3FD02 /* Pods_Runner.framework in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
/* End PBXFrameworksBuildPhase section */
|
/* End PBXFrameworksBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXGroup section */
|
/* Begin PBXGroup section */
|
||||||
0EDFEBEB76AE7FAFA44EF2AF /* Frameworks */ = {
|
331C8082294A63A400263BE5 /* RunnerTests */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
2F48A41A58786A29BEEBCFE3 /* Pods_Runner.framework */,
|
331C807B294A618700263BE5 /* RunnerTests.swift */,
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
path = RunnerTests;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
8575235C80CAB4F7FB7F5B46 /* Pods */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
FA507785CCEA4423C40C3CCD /* Pods-Runner.debug.xcconfig */,
|
||||||
|
4D6806EF7C87F4A8E899A73E /* Pods-Runner.release.xcconfig */,
|
||||||
|
7D277EA428A8FDCA196F3196 /* Pods-Runner.profile.xcconfig */,
|
||||||
|
F0FFA291A8BB24B66A6DCC8C /* Pods-RunnerTests.debug.xcconfig */,
|
||||||
|
5C84146D7BEE11433AA4DE9E /* Pods-RunnerTests.release.xcconfig */,
|
||||||
|
BD60456F5D1660BF5A90F9A1 /* Pods-RunnerTests.profile.xcconfig */,
|
||||||
|
);
|
||||||
|
name = Pods;
|
||||||
|
path = Pods;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
9740EEB11CF90186004384FC /* Flutter */ = {
|
9740EEB11CF90186004384FC /* Flutter */ = {
|
||||||
@@ -86,8 +126,9 @@
|
|||||||
9740EEB11CF90186004384FC /* Flutter */,
|
9740EEB11CF90186004384FC /* Flutter */,
|
||||||
97C146F01CF9000F007C117D /* Runner */,
|
97C146F01CF9000F007C117D /* Runner */,
|
||||||
97C146EF1CF9000F007C117D /* Products */,
|
97C146EF1CF9000F007C117D /* Products */,
|
||||||
E653626F5A38799455FF26C4 /* Pods */,
|
331C8082294A63A400263BE5 /* RunnerTests */,
|
||||||
0EDFEBEB76AE7FAFA44EF2AF /* Frameworks */,
|
8575235C80CAB4F7FB7F5B46 /* Pods */,
|
||||||
|
B94289CF044A7671B3BECB8E /* Frameworks */,
|
||||||
);
|
);
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
@@ -95,6 +136,7 @@
|
|||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
97C146EE1CF9000F007C117D /* Runner.app */,
|
97C146EE1CF9000F007C117D /* Runner.app */,
|
||||||
|
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
|
||||||
);
|
);
|
||||||
name = Products;
|
name = Products;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@@ -114,24 +156,42 @@
|
|||||||
path = Runner;
|
path = Runner;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
E653626F5A38799455FF26C4 /* Pods */ = {
|
B94289CF044A7671B3BECB8E /* Frameworks */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
85A1617DD2AFC45DFFDD8B11 /* Pods-Runner.debug.xcconfig */,
|
8BB3D975831D21A8FACEF96B /* Pods_Runner.framework */,
|
||||||
3F8F3496860058CED33C418C /* Pods-Runner.release.xcconfig */,
|
119B0071FAB85FAD36937602 /* Pods_RunnerTests.framework */,
|
||||||
564E6205C72C7CB32AC49601 /* Pods-Runner.profile.xcconfig */,
|
|
||||||
);
|
);
|
||||||
path = Pods;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
/* End PBXGroup section */
|
/* End PBXGroup section */
|
||||||
|
|
||||||
/* Begin PBXNativeTarget section */
|
/* Begin PBXNativeTarget section */
|
||||||
|
331C8080294A63A400263BE5 /* RunnerTests */ = {
|
||||||
|
isa = PBXNativeTarget;
|
||||||
|
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
|
||||||
|
buildPhases = (
|
||||||
|
70DBF52745AF25A4FC72D8C3 /* [CP] Check Pods Manifest.lock */,
|
||||||
|
331C807D294A63A400263BE5 /* Sources */,
|
||||||
|
331C807F294A63A400263BE5 /* Resources */,
|
||||||
|
1B803A0F046E9658A8FCEED0 /* Frameworks */,
|
||||||
|
);
|
||||||
|
buildRules = (
|
||||||
|
);
|
||||||
|
dependencies = (
|
||||||
|
331C8086294A63A400263BE5 /* PBXTargetDependency */,
|
||||||
|
);
|
||||||
|
name = RunnerTests;
|
||||||
|
productName = RunnerTests;
|
||||||
|
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
|
||||||
|
productType = "com.apple.product-type.bundle.unit-test";
|
||||||
|
};
|
||||||
97C146ED1CF9000F007C117D /* Runner */ = {
|
97C146ED1CF9000F007C117D /* Runner */ = {
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
DFE84742E2B41158E8703A14 /* [CP] Check Pods Manifest.lock */,
|
3DCEC8459668E43AE9B4C8D5 /* [CP] Check Pods Manifest.lock */,
|
||||||
9740EEB61CF901F6004384FC /* Run Script */,
|
9740EEB61CF901F6004384FC /* Run Script */,
|
||||||
97C146EA1CF9000F007C117D /* Sources */,
|
97C146EA1CF9000F007C117D /* Sources */,
|
||||||
97C146EB1CF9000F007C117D /* Frameworks */,
|
97C146EB1CF9000F007C117D /* Frameworks */,
|
||||||
@@ -154,9 +214,14 @@
|
|||||||
97C146E61CF9000F007C117D /* Project object */ = {
|
97C146E61CF9000F007C117D /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastUpgradeCheck = 1300;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
|
LastUpgradeCheck = 1510;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
|
331C8080294A63A400263BE5 = {
|
||||||
|
CreatedOnToolsVersion = 14.0;
|
||||||
|
TestTargetID = 97C146ED1CF9000F007C117D;
|
||||||
|
};
|
||||||
97C146ED1CF9000F007C117D = {
|
97C146ED1CF9000F007C117D = {
|
||||||
CreatedOnToolsVersion = 7.3.1;
|
CreatedOnToolsVersion = 7.3.1;
|
||||||
LastSwiftMigration = 1100;
|
LastSwiftMigration = 1100;
|
||||||
@@ -177,11 +242,19 @@
|
|||||||
projectRoot = "";
|
projectRoot = "";
|
||||||
targets = (
|
targets = (
|
||||||
97C146ED1CF9000F007C117D /* Runner */,
|
97C146ED1CF9000F007C117D /* Runner */,
|
||||||
|
331C8080294A63A400263BE5 /* RunnerTests */,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
/* End PBXProject section */
|
/* End PBXProject section */
|
||||||
|
|
||||||
/* Begin PBXResourcesBuildPhase section */
|
/* Begin PBXResourcesBuildPhase section */
|
||||||
|
331C807F294A63A400263BE5 /* Resources */ = {
|
||||||
|
isa = PBXResourcesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
97C146EC1CF9000F007C117D /* Resources */ = {
|
97C146EC1CF9000F007C117D /* Resources */ = {
|
||||||
isa = PBXResourcesBuildPhase;
|
isa = PBXResourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
@@ -203,6 +276,7 @@
|
|||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
|
||||||
);
|
);
|
||||||
name = "Thin Binary";
|
name = "Thin Binary";
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
@@ -211,22 +285,7 @@
|
|||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
||||||
};
|
};
|
||||||
9740EEB61CF901F6004384FC /* Run Script */ = {
|
3DCEC8459668E43AE9B4C8D5 /* [CP] Check Pods Manifest.lock */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
|
||||||
alwaysOutOfDate = 1;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
);
|
|
||||||
inputPaths = (
|
|
||||||
);
|
|
||||||
name = "Run Script";
|
|
||||||
outputPaths = (
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
shellPath = /bin/sh;
|
|
||||||
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
|
||||||
};
|
|
||||||
DFE84742E2B41158E8703A14 /* [CP] Check Pods Manifest.lock */ = {
|
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
@@ -248,9 +307,54 @@
|
|||||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
|
70DBF52745AF25A4FC72D8C3 /* [CP] Check Pods Manifest.lock */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||||
|
"${PODS_ROOT}/Manifest.lock",
|
||||||
|
);
|
||||||
|
name = "[CP] Check Pods Manifest.lock";
|
||||||
|
outputFileListPaths = (
|
||||||
|
);
|
||||||
|
outputPaths = (
|
||||||
|
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
9740EEB61CF901F6004384FC /* Run Script */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
alwaysOutOfDate = 1;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
);
|
||||||
|
name = "Run Script";
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
||||||
|
};
|
||||||
/* End PBXShellScriptBuildPhase section */
|
/* End PBXShellScriptBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */
|
/* Begin PBXSourcesBuildPhase section */
|
||||||
|
331C807D294A63A400263BE5 /* Sources */ = {
|
||||||
|
isa = PBXSourcesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
97C146EA1CF9000F007C117D /* Sources */ = {
|
97C146EA1CF9000F007C117D /* Sources */ = {
|
||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
@@ -262,6 +366,14 @@
|
|||||||
};
|
};
|
||||||
/* End PBXSourcesBuildPhase section */
|
/* End PBXSourcesBuildPhase section */
|
||||||
|
|
||||||
|
/* Begin PBXTargetDependency section */
|
||||||
|
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
|
||||||
|
isa = PBXTargetDependency;
|
||||||
|
target = 97C146ED1CF9000F007C117D /* Runner */;
|
||||||
|
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
|
||||||
|
};
|
||||||
|
/* End PBXTargetDependency section */
|
||||||
|
|
||||||
/* Begin PBXVariantGroup section */
|
/* Begin PBXVariantGroup section */
|
||||||
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
||||||
isa = PBXVariantGroup;
|
isa = PBXVariantGroup;
|
||||||
@@ -286,7 +398,7 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
ARCHS = arm64;
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
||||||
CLANG_ANALYZER_NONNULL = YES;
|
CLANG_ANALYZER_NONNULL = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
@@ -316,6 +428,7 @@
|
|||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
ENABLE_NS_ASSERTIONS = NO;
|
ENABLE_NS_ASSERTIONS = NO;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
|
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
@@ -324,7 +437,7 @@
|
|||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
SUPPORTED_PLATFORMS = iphoneos;
|
SUPPORTED_PLATFORMS = iphoneos;
|
||||||
@@ -337,7 +450,6 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD)";
|
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
@@ -348,7 +460,7 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.openim.sdk.example;
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.example;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
@@ -356,11 +468,61 @@
|
|||||||
};
|
};
|
||||||
name = Profile;
|
name = Profile;
|
||||||
};
|
};
|
||||||
|
331C8088294A63A400263BE5 /* Debug */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = F0FFA291A8BB24B66A6DCC8C /* Pods-RunnerTests.debug.xcconfig */;
|
||||||
|
buildSettings = {
|
||||||
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||||
|
CODE_SIGN_STYLE = Automatic;
|
||||||
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
|
GENERATE_INFOPLIST_FILE = YES;
|
||||||
|
MARKETING_VERSION = 1.0;
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests;
|
||||||
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
||||||
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
|
SWIFT_VERSION = 5.0;
|
||||||
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
||||||
|
};
|
||||||
|
name = Debug;
|
||||||
|
};
|
||||||
|
331C8089294A63A400263BE5 /* Release */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = 5C84146D7BEE11433AA4DE9E /* Pods-RunnerTests.release.xcconfig */;
|
||||||
|
buildSettings = {
|
||||||
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||||
|
CODE_SIGN_STYLE = Automatic;
|
||||||
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
|
GENERATE_INFOPLIST_FILE = YES;
|
||||||
|
MARKETING_VERSION = 1.0;
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests;
|
||||||
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
|
SWIFT_VERSION = 5.0;
|
||||||
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
||||||
|
};
|
||||||
|
name = Release;
|
||||||
|
};
|
||||||
|
331C808A294A63A400263BE5 /* Profile */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = BD60456F5D1660BF5A90F9A1 /* Pods-RunnerTests.profile.xcconfig */;
|
||||||
|
buildSettings = {
|
||||||
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||||
|
CODE_SIGN_STYLE = Automatic;
|
||||||
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
|
GENERATE_INFOPLIST_FILE = YES;
|
||||||
|
MARKETING_VERSION = 1.0;
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.example.RunnerTests;
|
||||||
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
|
SWIFT_VERSION = 5.0;
|
||||||
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
||||||
|
};
|
||||||
|
name = Profile;
|
||||||
|
};
|
||||||
97C147031CF9000F007C117D /* Debug */ = {
|
97C147031CF9000F007C117D /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
ARCHS = arm64;
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = AppIcon;
|
||||||
CLANG_ANALYZER_NONNULL = YES;
|
CLANG_ANALYZER_NONNULL = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
@@ -390,6 +552,7 @@
|
|||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
|
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
@@ -404,7 +567,7 @@
|
|||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
@@ -416,7 +579,7 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
ARCHS = arm64;
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = AppIcon;
|
||||||
CLANG_ANALYZER_NONNULL = YES;
|
CLANG_ANALYZER_NONNULL = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
@@ -446,6 +609,7 @@
|
|||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
ENABLE_NS_ASSERTIONS = NO;
|
ENABLE_NS_ASSERTIONS = NO;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
|
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
@@ -454,7 +618,7 @@
|
|||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
SUPPORTED_PLATFORMS = iphoneos;
|
SUPPORTED_PLATFORMS = iphoneos;
|
||||||
@@ -469,7 +633,6 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD)";
|
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
@@ -480,7 +643,7 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.openim.sdk.example;
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.example;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
@@ -493,7 +656,6 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ARCHS = "$(ARCHS_STANDARD)";
|
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
@@ -504,7 +666,7 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.openim.sdk.example;
|
PRODUCT_BUNDLE_IDENTIFIER = com.example.example;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
@@ -515,6 +677,16 @@
|
|||||||
/* End XCBuildConfiguration section */
|
/* End XCBuildConfiguration section */
|
||||||
|
|
||||||
/* Begin XCConfigurationList section */
|
/* Begin XCConfigurationList section */
|
||||||
|
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
|
||||||
|
isa = XCConfigurationList;
|
||||||
|
buildConfigurations = (
|
||||||
|
331C8088294A63A400263BE5 /* Debug */,
|
||||||
|
331C8089294A63A400263BE5 /* Release */,
|
||||||
|
331C808A294A63A400263BE5 /* Profile */,
|
||||||
|
);
|
||||||
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
|
};
|
||||||
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
buildConfigurations = (
|
buildConfigurations = (
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1300"
|
LastUpgradeVersion = "1510"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
@@ -27,8 +27,6 @@
|
|||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||||
<Testables>
|
|
||||||
</Testables>
|
|
||||||
<MacroExpansion>
|
<MacroExpansion>
|
||||||
<BuildableReference
|
<BuildableReference
|
||||||
BuildableIdentifier = "primary"
|
BuildableIdentifier = "primary"
|
||||||
@@ -38,8 +36,19 @@
|
|||||||
ReferencedContainer = "container:Runner.xcodeproj">
|
ReferencedContainer = "container:Runner.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</MacroExpansion>
|
</MacroExpansion>
|
||||||
<AdditionalOptions>
|
<Testables>
|
||||||
</AdditionalOptions>
|
<TestableReference
|
||||||
|
skipped = "NO"
|
||||||
|
parallelizable = "YES">
|
||||||
|
<BuildableReference
|
||||||
|
BuildableIdentifier = "primary"
|
||||||
|
BlueprintIdentifier = "331C8080294A63A400263BE5"
|
||||||
|
BuildableName = "RunnerTests.xctest"
|
||||||
|
BlueprintName = "RunnerTests"
|
||||||
|
ReferencedContainer = "container:Runner.xcodeproj">
|
||||||
|
</BuildableReference>
|
||||||
|
</TestableReference>
|
||||||
|
</Testables>
|
||||||
</TestAction>
|
</TestAction>
|
||||||
<LaunchAction
|
<LaunchAction
|
||||||
buildConfiguration = "Debug"
|
buildConfiguration = "Debug"
|
||||||
@@ -61,8 +70,6 @@
|
|||||||
ReferencedContainer = "container:Runner.xcodeproj">
|
ReferencedContainer = "container:Runner.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</BuildableProductRunnable>
|
</BuildableProductRunnable>
|
||||||
<AdditionalOptions>
|
|
||||||
</AdditionalOptions>
|
|
||||||
</LaunchAction>
|
</LaunchAction>
|
||||||
<ProfileAction
|
<ProfileAction
|
||||||
buildConfiguration = "Profile"
|
buildConfiguration = "Profile"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import UIKit
|
|
||||||
import Flutter
|
import Flutter
|
||||||
|
import UIKit
|
||||||
|
|
||||||
@UIApplicationMain
|
@main
|
||||||
@objc class AppDelegate: FlutterAppDelegate {
|
@objc class AppDelegate: FlutterAppDelegate {
|
||||||
override func application(
|
override func application(
|
||||||
_ application: UIApplication,
|
_ application: UIApplication,
|
||||||
|
|||||||
@@ -1,103 +1,122 @@
|
|||||||
{
|
{
|
||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
|
"size" : "20x20",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-20x20@2x.png",
|
||||||
"size" : "20x20"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "20x20",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "3x",
|
"filename" : "Icon-App-20x20@3x.png",
|
||||||
"size" : "20x20"
|
"scale" : "3x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "29x29",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "1x",
|
"filename" : "Icon-App-29x29@1x.png",
|
||||||
"size" : "29x29"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "29x29",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-29x29@2x.png",
|
||||||
"size" : "29x29"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "29x29",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "3x",
|
"filename" : "Icon-App-29x29@3x.png",
|
||||||
"size" : "29x29"
|
"scale" : "3x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "40x40",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-40x40@2x.png",
|
||||||
"size" : "40x40"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "40x40",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "3x",
|
"filename" : "Icon-App-40x40@3x.png",
|
||||||
"size" : "40x40"
|
"scale" : "3x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "60x60",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-60x60@2x.png",
|
||||||
"size" : "60x60"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "60x60",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"scale" : "3x",
|
"filename" : "Icon-App-60x60@3x.png",
|
||||||
"size" : "60x60"
|
"scale" : "3x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "20x20",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "1x",
|
"filename" : "Icon-App-20x20@1x.png",
|
||||||
"size" : "20x20"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "20x20",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-20x20@2x.png",
|
||||||
"size" : "20x20"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "29x29",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "1x",
|
"filename" : "Icon-App-29x29@1x.png",
|
||||||
"size" : "29x29"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "29x29",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-29x29@2x.png",
|
||||||
"size" : "29x29"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "40x40",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "1x",
|
"filename" : "Icon-App-40x40@1x.png",
|
||||||
"size" : "40x40"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "40x40",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-40x40@2x.png",
|
||||||
"size" : "40x40"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "76x76",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "1x",
|
"filename" : "Icon-App-76x76@1x.png",
|
||||||
"size" : "76x76"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "76x76",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-76x76@2x.png",
|
||||||
"size" : "76x76"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "83.5x83.5",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"scale" : "2x",
|
"filename" : "Icon-App-83.5x83.5@2x.png",
|
||||||
"size" : "83.5x83.5"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"size" : "1024x1024",
|
||||||
"idiom" : "ios-marketing",
|
"idiom" : "ios-marketing",
|
||||||
"scale" : "1x",
|
"filename" : "Icon-App-1024x1024@1x.png",
|
||||||
"size" : "1024x1024"
|
"scale" : "1x"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info" : {
|
"info" : {
|
||||||
"author" : "xcode",
|
"version" : 1,
|
||||||
"version" : 1
|
"author" : "xcode"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 579 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 970 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 6.5 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
@@ -2,19 +2,22 @@
|
|||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
|
"filename" : "LaunchImage.png",
|
||||||
"scale" : "1x"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
|
"filename" : "LaunchImage@2x.png",
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
|
"filename" : "LaunchImage@3x.png",
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info" : {
|
"info" : {
|
||||||
"author" : "xcode",
|
"version" : 1,
|
||||||
"version" : 1
|
"author" : "xcode"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
vendored
Normal file
|
After Width: | Height: | Size: 68 B |
BIN
example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 68 B |
BIN
example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 68 B |
@@ -1,10 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="19455" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
|
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
|
||||||
<device id="retina6_1" orientation="portrait" appearance="light"/>
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment identifier="iOS"/>
|
<deployment identifier="iOS"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="19454"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
|
||||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<scenes>
|
<scenes>
|
||||||
<!--Flutter View Controller-->
|
<!--Flutter View Controller-->
|
||||||
@@ -16,14 +14,13 @@
|
|||||||
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
|
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
|
||||||
</layoutGuides>
|
</layoutGuides>
|
||||||
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
||||||
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
|
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
||||||
</view>
|
</view>
|
||||||
</viewController>
|
</viewController>
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
||||||
</objects>
|
</objects>
|
||||||
<point key="canvasLocation" x="-26" y="-44"/>
|
|
||||||
</scene>
|
</scene>
|
||||||
</scenes>
|
</scenes>
|
||||||
</document>
|
</document>
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
||||||
<true/>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>Example</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>$(EXECUTABLE_NAME)</string>
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
<string>6.0</string>
|
<string>6.0</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
<string>flutter_openim_sdk_example</string>
|
<string>example</string>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
@@ -24,8 +24,6 @@
|
|||||||
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>UIApplicationSupportsIndirectInputEvents</key>
|
|
||||||
<true/>
|
|
||||||
<key>UILaunchStoryboardName</key>
|
<key>UILaunchStoryboardName</key>
|
||||||
<string>LaunchScreen</string>
|
<string>LaunchScreen</string>
|
||||||
<key>UIMainStoryboardFile</key>
|
<key>UIMainStoryboardFile</key>
|
||||||
@@ -43,7 +41,9 @@
|
|||||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
</array>
|
</array>
|
||||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||||
<false/>
|
<true/>
|
||||||
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||||
|
<true/>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
12
example/ios/RunnerTests/RunnerTests.swift
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import Flutter
|
||||||
|
import UIKit
|
||||||
|
import XCTest
|
||||||
|
|
||||||
|
class RunnerTests: XCTestCase {
|
||||||
|
|
||||||
|
func testExample() {
|
||||||
|
// If you add code to the Runner application, consider adding tests here.
|
||||||
|
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -45,10 +45,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: cupertino_icons
|
name: cupertino_icons
|
||||||
sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
|
sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.6"
|
version: "1.0.8"
|
||||||
fake_async:
|
fake_async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -62,13 +62,21 @@ packages:
|
|||||||
description: flutter
|
description: flutter
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.0.0"
|
version: "0.0.0"
|
||||||
|
flutter_lints:
|
||||||
|
dependency: "direct dev"
|
||||||
|
description:
|
||||||
|
name: flutter_lints
|
||||||
|
sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.2"
|
||||||
flutter_openim_sdk:
|
flutter_openim_sdk:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
path: ".."
|
path: ".."
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "3.8.1"
|
version: "3.8.3+2"
|
||||||
flutter_test:
|
flutter_test:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description: flutter
|
description: flutter
|
||||||
@@ -78,18 +86,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker
|
name: leak_tracker
|
||||||
sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a"
|
sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "10.0.4"
|
version: "10.0.5"
|
||||||
leak_tracker_flutter_testing:
|
leak_tracker_flutter_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker_flutter_testing
|
name: leak_tracker_flutter_testing
|
||||||
sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
|
sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.3"
|
version: "3.0.5"
|
||||||
leak_tracker_testing:
|
leak_tracker_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -98,6 +106,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.1"
|
version: "3.0.1"
|
||||||
|
lints:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: lints
|
||||||
|
sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.0"
|
||||||
matcher:
|
matcher:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -110,18 +126,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: material_color_utilities
|
name: material_color_utilities
|
||||||
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
|
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.0"
|
version: "0.11.1"
|
||||||
meta:
|
meta:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: meta
|
name: meta
|
||||||
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
|
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.12.0"
|
version: "1.15.0"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -179,10 +195,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_api
|
name: test_api
|
||||||
sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f"
|
sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.0"
|
version: "0.7.2"
|
||||||
vector_math:
|
vector_math:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -195,10 +211,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
|
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.1"
|
version: "14.2.5"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.3.0 <4.0.0"
|
dart: ">=3.4.4 <4.0.0"
|
||||||
flutter: ">=3.18.0-18.0.pre.54"
|
flutter: ">=3.18.0-18.0.pre.54"
|
||||||
|
|||||||
@@ -2,13 +2,32 @@ name: flutter_openim_sdk_example
|
|||||||
description: Demonstrates how to use the flutter_openim_sdk plugin.
|
description: Demonstrates how to use the flutter_openim_sdk plugin.
|
||||||
|
|
||||||
# The following line prevents the package from being accidentally published to
|
# The following line prevents the package from being accidentally published to
|
||||||
# pub.dev using `pub publish`. This is preferred for private packages.
|
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
||||||
#publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||||
version: 1.0.0
|
|
||||||
|
# The following defines the version and build number for your application.
|
||||||
|
# A version number is three numbers separated by dots, like 1.2.43
|
||||||
|
# followed by an optional build number separated by a +.
|
||||||
|
# Both the version and the builder number may be overridden in flutter
|
||||||
|
# build by specifying --build-name and --build-number, respectively.
|
||||||
|
# In Android, build-name is used as versionName while build-number used as versionCode.
|
||||||
|
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
|
||||||
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
|
||||||
|
# Read more about iOS versioning at
|
||||||
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
|
version: 1.0.0+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.12.0 <3.0.0"
|
sdk: '>=3.4.4 <4.0.0'
|
||||||
|
|
||||||
|
# Dependencies specify other packages that your package needs in order to work.
|
||||||
|
# To automatically upgrade your package dependencies to the latest versions
|
||||||
|
# consider running `flutter pub upgrade --major-versions`. Alternatively,
|
||||||
|
# dependencies can be manually updated by changing the version numbers below to
|
||||||
|
# the latest version available on pub.dev. To see which dependencies have newer
|
||||||
|
# versions available, run `flutter pub outdated`.
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
@@ -23,16 +42,23 @@ dependencies:
|
|||||||
|
|
||||||
# The following adds the Cupertino Icons font to your application.
|
# The following adds the Cupertino Icons font to your application.
|
||||||
# Use with the CupertinoIcons class for iOS style icons.
|
# Use with the CupertinoIcons class for iOS style icons.
|
||||||
cupertino_icons: ^1.0.2
|
cupertino_icons: ^1.0.6
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|
||||||
|
# The "flutter_lints" package below contains a set of recommended lints to
|
||||||
|
# encourage good coding practices. The lint set provided by the package is
|
||||||
|
# activated in the `analysis_options.yaml` file located at the root of your
|
||||||
|
# package. See that file for information about deactivating specific lint
|
||||||
|
# rules and activating additional ones.
|
||||||
|
flutter_lints: ^3.0.0
|
||||||
|
|
||||||
# For information on the generic Dart part of this file, see the
|
# For information on the generic Dart part of this file, see the
|
||||||
# following page: https://dart.dev/tools/pub/pubspec
|
# following page: https://dart.dev/tools/pub/pubspec
|
||||||
|
|
||||||
# The following section is specific to Flutter.
|
# The following section is specific to Flutter packages.
|
||||||
flutter:
|
flutter:
|
||||||
|
|
||||||
# The following line ensures that the Material Icons font is
|
# The following line ensures that the Material Icons font is
|
||||||
@@ -46,7 +72,7 @@ flutter:
|
|||||||
# - images/a_dot_ham.jpeg
|
# - images/a_dot_ham.jpeg
|
||||||
|
|
||||||
# An image asset can refer to one or more resolution-specific "variants", see
|
# An image asset can refer to one or more resolution-specific "variants", see
|
||||||
# https://flutter.dev/assets-and-images/#resolution-aware.
|
# https://flutter.dev/assets-and-images/#resolution-aware
|
||||||
|
|
||||||
# For details regarding adding assets from package dependencies, see
|
# For details regarding adding assets from package dependencies, see
|
||||||
# https://flutter.dev/assets-and-images/#from-packages
|
# https://flutter.dev/assets-and-images/#from-packages
|
||||||
|
|||||||
@@ -1,26 +1,30 @@
|
|||||||
// This is a basic Flutter widget test.
|
// This is a basic Flutter widget test.
|
||||||
//
|
//
|
||||||
// To perform an interaction with a widget in your test, use the WidgetTester
|
// To perform an interaction with a widget in your test, use the WidgetTester
|
||||||
// utility that Flutter provides. For example, you can send tap and scroll
|
// utility in the flutter_test package. For example, you can send tap and scroll
|
||||||
// gestures. You can also use WidgetTester to find child widgets in the widget
|
// gestures. You can also use WidgetTester to find child widgets in the widget
|
||||||
// tree, read text, and verify that the values of widget properties are correct.
|
// tree, read text, and verify that the values of widget properties are correct.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
|
||||||
import '../lib/main.dart';
|
import 'package:flutter_openim_sdk_example/main.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
testWidgets('Verify Platform version', (WidgetTester tester) async {
|
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
|
||||||
// Build our app and trigger a frame.
|
// Build our app and trigger a frame.
|
||||||
await tester.pumpWidget(MyApp());
|
await tester.pumpWidget(MyApp());
|
||||||
|
|
||||||
// Verify that platform version is retrieved.
|
// Verify that our counter starts at 0.
|
||||||
expect(
|
expect(find.text('0'), findsOneWidget);
|
||||||
find.byWidgetPredicate(
|
expect(find.text('1'), findsNothing);
|
||||||
(Widget widget) => widget is Text && widget.data!.startsWith('Running on:'),
|
|
||||||
),
|
// Tap the '+' icon and trigger a frame.
|
||||||
findsOneWidget,
|
await tester.tap(find.byIcon(Icons.add));
|
||||||
);
|
await tester.pump();
|
||||||
|
|
||||||
|
// Verify that our counter has incremented.
|
||||||
|
expect(find.text('0'), findsNothing);
|
||||||
|
expect(find.text('1'), findsOneWidget);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
101
ios/Classes/Module/ChannelManager.swift
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
import Foundation
|
||||||
|
import OpenIMCore
|
||||||
|
|
||||||
|
public class ChannelManager: BaseServiceManager {
|
||||||
|
|
||||||
|
public override func registerHandlers() {
|
||||||
|
super.registerHandlers()
|
||||||
|
|
||||||
|
// self["changeChannelMemberMute"] = changeChannelMemberMute
|
||||||
|
// self["changeChannelMute"] = changeChannelMute
|
||||||
|
|
||||||
|
// self["getChannelMemberList"] = getChannelMemberList
|
||||||
|
|
||||||
|
|
||||||
|
self["getChannelMembersInfo"] = getChannelMembersInfo
|
||||||
|
self["getChannelsInfo"] = getChannelsInfo
|
||||||
|
|
||||||
|
|
||||||
|
self["getUsersInChannel"] = getUsersInChannel
|
||||||
|
self["isJoinChannel"] = isJoinChannel
|
||||||
|
self["joinChannel"] = joinChannel
|
||||||
|
self["quitChannel"] = quitChannel
|
||||||
|
self["setChannelListener"] = setChannelListener
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// func changeChannelMemberMute(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
// Open_im_sdkChangeChannelMemberMute(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"], methodCall[string:"userID"], methodCall[int:"seconds"])
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// func changeChannelMute(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
// Open_im_sdkChangeChannelMute(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"], methodCall[bool: "mute"])
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// func getChannelMemberList(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
// Open_im_sdkGetChannelMemberList(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"], methodCall[int32: "filter"],
|
||||||
|
// methodCall[int32: "offset"], methodCall[int32: "count"])
|
||||||
|
// }
|
||||||
|
|
||||||
|
func getChannelMembersInfo(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkGetSpecifiedChannelMembersInfo(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"], methodCall[jsonString: "userIDList"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func getChannelsInfo(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkGetSpecifiedChannelsInfo(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[jsonString: "channelIDList"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func getUsersInChannel(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkGetUsersInChannel(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"],
|
||||||
|
methodCall[jsonString: "userIDs"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func isJoinChannel(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkIsJoinChannel(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func joinChannel(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkJoinChannel(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"], methodCall[string:
|
||||||
|
"reason"], methodCall[int32: "joinSource"], methodCall[jsonString: "ex"])
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func quitChannel(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkQuitChannel(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "channelID"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func setChannelListener(methodCall: FlutterMethodCall, result: @escaping FlutterResult) {
|
||||||
|
Open_im_sdkSetChannelListener(ChannelListener(channel: channel))
|
||||||
|
callBack(result)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class ChannelListener: NSObject, Open_im_sdk_callbackOnChannelListenerProtocol {
|
||||||
|
|
||||||
|
private let channel: FlutterMethodChannel
|
||||||
|
|
||||||
|
init(channel: FlutterMethodChannel) {
|
||||||
|
self.channel = channel
|
||||||
|
}
|
||||||
|
|
||||||
|
public func onChannelDismissed(_ s: String?) {
|
||||||
|
CommonUtil.emitEvent(channel: channel, method: "channelListener", type: "onChannelDismissed", errCode: nil, errMsg: nil, data: s)
|
||||||
|
}
|
||||||
|
|
||||||
|
public func onChannelInfoChanged(_ s: String?) {
|
||||||
|
CommonUtil.emitEvent(channel: channel, method: "channelListener", type: "onChannelInfoChanged", errCode: nil, errMsg: nil, data: s)
|
||||||
|
}
|
||||||
|
|
||||||
|
public func onChannelMemberAdded(_ s: String?) {
|
||||||
|
CommonUtil.emitEvent(channel: channel, method: "channelListener", type: "onChannelMemberAdded", errCode: nil, errMsg: nil, data: s)
|
||||||
|
}
|
||||||
|
|
||||||
|
public func onChannelMemberDeleted(_ s: String?) {
|
||||||
|
CommonUtil.emitEvent(channel: channel, method: "channelListener", type: "onChannelMemberDeleted", errCode: nil, errMsg: nil, data: s)
|
||||||
|
}
|
||||||
|
|
||||||
|
public func onChannelMemberInfoChanged(_ s: String?) {
|
||||||
|
CommonUtil.emitEvent(channel: channel, method: "channelListener", type: "onChannelMemberInfoChanged", errCode: nil, errMsg: nil, data: s)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ public class MessageManager: BaseServiceManager {
|
|||||||
self["setAdvancedMsgListener"] = setAdvancedMsgListener
|
self["setAdvancedMsgListener"] = setAdvancedMsgListener
|
||||||
self["sendMessage"] = sendMessage
|
self["sendMessage"] = sendMessage
|
||||||
self["revokeMessage"] = revokeMessage
|
self["revokeMessage"] = revokeMessage
|
||||||
|
self["editMessage"] = editMessage
|
||||||
self["deleteMessageFromLocalStorage"] = deleteMessageFromLocalStorage
|
self["deleteMessageFromLocalStorage"] = deleteMessageFromLocalStorage
|
||||||
self["deleteMessageFromLocalAndSvr"] = deleteMessageFromLocalAndSvr
|
self["deleteMessageFromLocalAndSvr"] = deleteMessageFromLocalAndSvr
|
||||||
self["deleteAllMsgFromLocal"] = deleteAllMsgFromLocal
|
self["deleteAllMsgFromLocal"] = deleteAllMsgFromLocal
|
||||||
@@ -47,6 +48,10 @@ public class MessageManager: BaseServiceManager {
|
|||||||
self["setMessageLocalEx"] = setMessageLocalEx
|
self["setMessageLocalEx"] = setMessageLocalEx
|
||||||
self["setAppBadge"] = setAppBadge
|
self["setAppBadge"] = setAppBadge
|
||||||
|
|
||||||
|
self["fetchSurroundingMessages"] = fetchSurroundingMessages
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
self["sendMessageNotOss"] = sendMessageNotOss
|
self["sendMessageNotOss"] = sendMessageNotOss
|
||||||
self["createImageMessageByURL"] = createImageMessageByURL
|
self["createImageMessageByURL"] = createImageMessageByURL
|
||||||
self["createSoundMessageByURL"] = createSoundMessageByURL
|
self["createSoundMessageByURL"] = createSoundMessageByURL
|
||||||
@@ -65,13 +70,17 @@ public class MessageManager: BaseServiceManager {
|
|||||||
func sendMessage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func sendMessage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
let sendMsgProgressListener: SendMsgProgressListener = SendMsgProgressListener(channel: channel,result: result,methodCall: methodCall)
|
let sendMsgProgressListener: SendMsgProgressListener = SendMsgProgressListener(channel: channel,result: result,methodCall: methodCall)
|
||||||
Open_im_sdkSendMessage(sendMsgProgressListener, methodCall[string: "operationID"], methodCall[jsonString: "message"], methodCall[string: "userID"],
|
Open_im_sdkSendMessage(sendMsgProgressListener, methodCall[string: "operationID"], methodCall[jsonString: "message"], methodCall[string: "userID"],
|
||||||
methodCall[string: "groupID"], methodCall[jsonString: "offlinePushInfo"], methodCall[bool: "isOnlineOnly"])
|
methodCall[string: "groupID"], methodCall[string: "channelID"],methodCall[jsonString: "offlinePushInfo"], methodCall[bool: "isOnlineOnly"])
|
||||||
}
|
}
|
||||||
|
|
||||||
func revokeMessage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func revokeMessage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
Open_im_sdkRevokeMessage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "conversationID"],methodCall[string: "clientMsgID"])
|
Open_im_sdkRevokeMessage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "conversationID"],methodCall[string: "clientMsgID"])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func editMessage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
|
Open_im_sdkEditMessage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "conversationID"],methodCall[string: "clientMsgID"],methodCall[jsonString: "message"])
|
||||||
|
}
|
||||||
|
|
||||||
func deleteMessageFromLocalStorage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func deleteMessageFromLocalStorage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
Open_im_sdkDeleteMessageFromLocalStorage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "conversationID"],methodCall[string: "clientMsgID"])
|
Open_im_sdkDeleteMessageFromLocalStorage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[string: "conversationID"],methodCall[string: "clientMsgID"])
|
||||||
}
|
}
|
||||||
@@ -95,7 +104,7 @@ public class MessageManager: BaseServiceManager {
|
|||||||
|
|
||||||
func insertGroupMessageToLocalStorage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func insertGroupMessageToLocalStorage(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
Open_im_sdkInsertGroupMessageToLocalStorage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[jsonString: "message"],
|
Open_im_sdkInsertGroupMessageToLocalStorage(BaseCallback(result: result), methodCall[string: "operationID"], methodCall[jsonString: "message"],
|
||||||
methodCall[string: "groupID"], methodCall[string: "senderID"])
|
methodCall[string: "groupID"], methodCall[string: "channelID"],methodCall[string: "senderID"])
|
||||||
}
|
}
|
||||||
|
|
||||||
func markMessagesAsReadByMsgID(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func markMessagesAsReadByMsgID(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
@@ -227,7 +236,7 @@ public class MessageManager: BaseServiceManager {
|
|||||||
|
|
||||||
func sendMessageNotOss(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func sendMessageNotOss(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
let sendMsgProgressListener: SendMsgProgressListener = SendMsgProgressListener(channel: channel,result: result,methodCall: methodCall)
|
let sendMsgProgressListener: SendMsgProgressListener = SendMsgProgressListener(channel: channel,result: result,methodCall: methodCall)
|
||||||
Open_im_sdkSendMessageNotOss(sendMsgProgressListener, methodCall[string: "operationID"], methodCall[jsonString: "message"], methodCall[string: "userID"], methodCall[string: "groupID"], methodCall[jsonString: "offlinePushInfo"], methodCall[bool: "isOnlineOnly"])
|
Open_im_sdkSendMessageNotOss(sendMsgProgressListener, methodCall[string: "operationID"], methodCall[jsonString: "message"], methodCall[string: "userID"], methodCall[string: "groupID"], methodCall[string: "channelID"],methodCall[jsonString: "offlinePushInfo"], methodCall[bool: "isOnlineOnly"])
|
||||||
}
|
}
|
||||||
|
|
||||||
func createImageMessageByURL(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
func createImageMessageByURL(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
@@ -250,6 +259,13 @@ public class MessageManager: BaseServiceManager {
|
|||||||
Open_im_sdkSetCustomBusinessListener(CustomBusinessListener(channel: channel))
|
Open_im_sdkSetCustomBusinessListener(CustomBusinessListener(channel: channel))
|
||||||
callBack(result)
|
callBack(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func fetchSurroundingMessages(methodCall: FlutterMethodCall, result: @escaping FlutterResult){
|
||||||
|
Open_im_sdkFetchSurroundingMessages(BaseCallback(result: result),methodCall[string: "operationID"], methodCall[jsonString: "message"], methodCall[int: "before"], methodCall[int: "after"])
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SendMsgProgressListener: NSObject, Open_im_sdk_callbackSendMsgCallBackProtocol {
|
public class SendMsgProgressListener: NSObject, Open_im_sdk_callbackSendMsgCallBackProtocol {
|
||||||
@@ -303,7 +319,14 @@ public class AdvancedMsgListener: NSObject, Open_im_sdk_callbackOnAdvancedMsgLis
|
|||||||
values["messageRevoked"] = messageRevoked
|
values["messageRevoked"] = messageRevoked
|
||||||
CommonUtil.emitEvent(channel: channel, method: "advancedMsgListener", type: "onNewRecvMessageRevoked", errCode: nil, errMsg: nil, data: values)
|
CommonUtil.emitEvent(channel: channel, method: "advancedMsgListener", type: "onNewRecvMessageRevoked", errCode: nil, errMsg: nil, data: values)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public func onNewRecvMessageEdited(_ messageEdited: String?) {
|
||||||
|
var values: [String: Any] = [:]
|
||||||
|
values["id"] = id
|
||||||
|
values["messageEdited"] = messageEdited
|
||||||
|
CommonUtil.emitEvent(channel: channel, method: "advancedMsgListener", type: "onNewRecvMessageEdited", errCode: nil, errMsg: nil, data: values)
|
||||||
|
}
|
||||||
|
|
||||||
public func onRecvC2CReadReceipt(_ msgReceiptList: String?) {
|
public func onRecvC2CReadReceipt(_ msgReceiptList: String?) {
|
||||||
var values: [String: Any] = [:]
|
var values: [String: Any] = [:]
|
||||||
values["id"] = id
|
values["id"] = id
|
||||||
|
|||||||
@@ -8,13 +8,15 @@ public class SwiftFlutterOpenimSdkPlugin: NSObject, FlutterPlugin {
|
|||||||
let messageManager: MessageManager
|
let messageManager: MessageManager
|
||||||
let groupManager: GroupManager
|
let groupManager: GroupManager
|
||||||
let userManger: UserManager
|
let userManger: UserManager
|
||||||
|
let channelManager: ChannelManager
|
||||||
|
|
||||||
init(channel: FlutterMethodChannel) {
|
init(channel: FlutterMethodChannel) {
|
||||||
self.imManager = IMMananger(channel: channel)
|
self.imManager = IMMananger(channel: channel)
|
||||||
self.conversationManager = ConversationManager(channel: channel)
|
self.conversationManager = ConversationManager(channel: channel)
|
||||||
self.friendshipManager = FriendshipManager(channel: channel)
|
self.friendshipManager = FriendshipManager(channel: channel)
|
||||||
self.messageManager = MessageManager(channel: channel)
|
self.messageManager = MessageManager(channel: channel)
|
||||||
self.groupManager = GroupManager(channel: channel)
|
self.groupManager = GroupManager(channel: channel)
|
||||||
|
self.channelManager = ChannelManager(channel: channel)
|
||||||
self.userManger = UserManager(channel: channel)
|
self.userManger = UserManager(channel: channel)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -37,6 +39,8 @@ public class SwiftFlutterOpenimSdkPlugin: NSObject, FlutterPlugin {
|
|||||||
friendshipManager.handleMethod(call: call, result: result)
|
friendshipManager.handleMethod(call: call, result: result)
|
||||||
case "groupManager":
|
case "groupManager":
|
||||||
groupManager.handleMethod(call: call, result: result)
|
groupManager.handleMethod(call: call, result: result)
|
||||||
|
case "channelManager":
|
||||||
|
channelManager.handleMethod(call: call, result: result)
|
||||||
case "userManager":
|
case "userManager":
|
||||||
userManger.handleMethod(call: call, result: result)
|
userManger.handleMethod(call: call, result: result)
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'flutter_openim_sdk'
|
s.name = 'flutter_openim_sdk'
|
||||||
s.version = '0.0.1'
|
s.version = '0.0.11'
|
||||||
s.summary = 'A new Flutter project.'
|
s.summary = 'A new Flutter project.'
|
||||||
s.description = <<-DESC
|
s.description = <<-DESC
|
||||||
A new Flutter project.
|
A new Flutter project.
|
||||||
@@ -15,12 +15,17 @@ A new Flutter project.
|
|||||||
s.source = { :path => '.' }
|
s.source = { :path => '.' }
|
||||||
s.source_files = 'Classes/**/*'
|
s.source_files = 'Classes/**/*'
|
||||||
s.dependency 'Flutter'
|
s.dependency 'Flutter'
|
||||||
s.platform = :ios, '11.0'
|
s.platform = :ios, '13.0'
|
||||||
|
|
||||||
s.dependency 'OpenIMSDKCore','3.8.1'
|
#s.ios.vendored_frameworks = 'frameworks/*.xcframework'
|
||||||
|
#s.vendored_frameworks = 'frameworks/*.xcframework'
|
||||||
|
s.dependency 'openim_sdk_core_ios','0.11.0'
|
||||||
s.static_framework = true
|
s.static_framework = true
|
||||||
s.library = 'resolv'
|
s.library = 'resolv'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# s.vendored_frameworks = 'Framework/*.xcframework'
|
# s.vendored_frameworks = 'Framework/*.xcframework'
|
||||||
# Flutter.framework does not contain a i386 slice.
|
# Flutter.framework does not contain a i386 slice.
|
||||||
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386 arm64' }
|
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386 arm64' }
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ export 'src/listener/conversation_listener.dart';
|
|||||||
export 'src/listener/custom_business_listener.dart';
|
export 'src/listener/custom_business_listener.dart';
|
||||||
export 'src/listener/friendship_listener.dart';
|
export 'src/listener/friendship_listener.dart';
|
||||||
export 'src/listener/group_listener.dart';
|
export 'src/listener/group_listener.dart';
|
||||||
|
export 'src/listener/channel_listener.dart';
|
||||||
export 'src/listener/listener_for_service.dart';
|
export 'src/listener/listener_for_service.dart';
|
||||||
export 'src/listener/msg_send_progress_listener.dart';
|
export 'src/listener/msg_send_progress_listener.dart';
|
||||||
export 'src/listener/upload_file_listener.dart';
|
export 'src/listener/upload_file_listener.dart';
|
||||||
@@ -24,16 +25,20 @@ export 'src/listener/user_listener.dart';
|
|||||||
export 'src/manager/im_conversation_manager.dart';
|
export 'src/manager/im_conversation_manager.dart';
|
||||||
export 'src/manager/im_friendship_manager.dart';
|
export 'src/manager/im_friendship_manager.dart';
|
||||||
export 'src/manager/im_group_manager.dart';
|
export 'src/manager/im_group_manager.dart';
|
||||||
|
export 'src/manager/im_channel_manager.dart';
|
||||||
export 'src/manager/im_manager.dart';
|
export 'src/manager/im_manager.dart';
|
||||||
export 'src/manager/im_message_manager.dart';
|
export 'src/manager/im_message_manager.dart';
|
||||||
export 'src/manager/im_user_manager.dart';
|
export 'src/manager/im_user_manager.dart';
|
||||||
export 'src/models/conversation_info.dart';
|
export 'src/models/conversation_info.dart';
|
||||||
export 'src/models/group_info.dart';
|
export 'src/models/group_info.dart';
|
||||||
|
export 'src/models/channel_info.dart';
|
||||||
export 'src/models/init_config.dart';
|
export 'src/models/init_config.dart';
|
||||||
export 'src/models/message.dart';
|
export 'src/models/message.dart';
|
||||||
export 'src/models/notification_info.dart';
|
export 'src/models/notification_info.dart';
|
||||||
export 'src/models/search_info.dart';
|
export 'src/models/search_info.dart';
|
||||||
export 'src/models/user_info.dart';
|
export 'src/models/user_info.dart';
|
||||||
export 'src/models/input_status_changed_data.dart';
|
export 'src/models/input_status_changed_data.dart';
|
||||||
|
export 'src/models/set_group_member_info.dart';
|
||||||
|
export 'src/models/update_req.dart';
|
||||||
export 'src/openim.dart';
|
export 'src/openim.dart';
|
||||||
export 'src/utils.dart';
|
export 'src/utils.dart';
|
||||||
|
|||||||
@@ -12,4 +12,8 @@ class ConversationType {
|
|||||||
|
|
||||||
/// Notification
|
/// Notification
|
||||||
static const notification = 4;
|
static const notification = 4;
|
||||||
|
|
||||||
|
/// Super channel chat
|
||||||
|
static const superChannel = 11;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ class ListenerType {
|
|||||||
static const connectListener = 'connectListener';
|
static const connectListener = 'connectListener';
|
||||||
static const userListener = 'userListener';
|
static const userListener = 'userListener';
|
||||||
static const groupListener = 'groupListener';
|
static const groupListener = 'groupListener';
|
||||||
|
static const channelListener = 'channelListener';
|
||||||
static const advancedMsgListener = 'advancedMsgListener';
|
static const advancedMsgListener = 'advancedMsgListener';
|
||||||
static const conversationListener = 'conversationListener';
|
static const conversationListener = 'conversationListener';
|
||||||
static const friendListener = 'friendListener';
|
static const friendListener = 'friendListener';
|
||||||
|
|||||||
@@ -12,3 +12,12 @@ class MessageStatus {
|
|||||||
/// Already deleted
|
/// Already deleted
|
||||||
static const deleted = 4;
|
static const deleted = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum GetHistoryViewType {
|
||||||
|
history(0),
|
||||||
|
search(1);
|
||||||
|
|
||||||
|
final int rawValue;
|
||||||
|
|
||||||
|
const GetHistoryViewType(this.rawValue);
|
||||||
|
}
|
||||||
|
|||||||
@@ -168,6 +168,9 @@ class MessageType {
|
|||||||
/// Recall Message
|
/// Recall Message
|
||||||
static const revokeMessageNotification = 2101;
|
static const revokeMessageNotification = 2101;
|
||||||
|
|
||||||
|
/// Edit Message
|
||||||
|
static const editMessageNotification = 2108;
|
||||||
|
|
||||||
/// Single Chat Has Read Receipt
|
/// Single Chat Has Read Receipt
|
||||||
static const signalHasReadReceiptNotification = 2150;
|
static const signalHasReadReceiptNotification = 2150;
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
|||||||
class OnAdvancedMsgListener {
|
class OnAdvancedMsgListener {
|
||||||
Function(Message msg)? onMsgDeleted;
|
Function(Message msg)? onMsgDeleted;
|
||||||
Function(RevokedInfo info)? onNewRecvMessageRevoked;
|
Function(RevokedInfo info)? onNewRecvMessageRevoked;
|
||||||
|
Function(EditedInfo info)? onNewRecvMessageEdited;
|
||||||
Function(List<ReadReceiptInfo> list)? onRecvC2CReadReceipt;
|
Function(List<ReadReceiptInfo> list)? onRecvC2CReadReceipt;
|
||||||
Function(Message msg)? onRecvNewMessage;
|
Function(Message msg)? onRecvNewMessage;
|
||||||
Function(Message msg)? onRecvOfflineNewMessage;
|
Function(Message msg)? onRecvOfflineNewMessage;
|
||||||
@@ -15,6 +16,7 @@ class OnAdvancedMsgListener {
|
|||||||
OnAdvancedMsgListener({
|
OnAdvancedMsgListener({
|
||||||
this.onMsgDeleted,
|
this.onMsgDeleted,
|
||||||
this.onNewRecvMessageRevoked,
|
this.onNewRecvMessageRevoked,
|
||||||
|
this.onNewRecvMessageEdited,
|
||||||
this.onRecvC2CReadReceipt,
|
this.onRecvC2CReadReceipt,
|
||||||
this.onRecvNewMessage,
|
this.onRecvNewMessage,
|
||||||
this.onRecvOfflineNewMessage,
|
this.onRecvOfflineNewMessage,
|
||||||
@@ -30,6 +32,12 @@ class OnAdvancedMsgListener {
|
|||||||
onNewRecvMessageRevoked?.call(info);
|
onNewRecvMessageRevoked?.call(info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Message has been edited
|
||||||
|
void newRecvMessageEdited(EditedInfo info) {
|
||||||
|
onNewRecvMessageEdited?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// C2C Message Read Receipt
|
/// C2C Message Read Receipt
|
||||||
void recvC2CReadReceipt(List<ReadReceiptInfo> list) {
|
void recvC2CReadReceipt(List<ReadReceiptInfo> list) {
|
||||||
onRecvC2CReadReceipt?.call(list);
|
onRecvC2CReadReceipt?.call(list);
|
||||||
|
|||||||
60
lib/src/listener/channel_listener.dart
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
||||||
|
|
||||||
|
import '../models/channel_info.dart';
|
||||||
|
|
||||||
|
/// Channel Listener
|
||||||
|
class OnChannelListener {
|
||||||
|
|
||||||
|
Function(ChannelInfo info)? onChannelDismissed;
|
||||||
|
Function(ChannelInfo info)? onChannelInfoChanged;
|
||||||
|
Function(ChannelMembersInfo info)? onChannelMemberAdded;
|
||||||
|
Function(ChannelMembersInfo info)? onChannelMemberDeleted;
|
||||||
|
Function(ChannelMembersInfo info)? onChannelMemberInfoChanged;
|
||||||
|
Function(ChannelInfo info)? onJoinedChannelAdded;
|
||||||
|
Function(ChannelInfo info)? onJoinedChannelDeleted;
|
||||||
|
|
||||||
|
OnChannelListener({
|
||||||
|
this.onChannelDismissed,
|
||||||
|
this.onChannelInfoChanged,
|
||||||
|
this.onChannelMemberAdded,
|
||||||
|
this.onChannelMemberDeleted,
|
||||||
|
this.onChannelMemberInfoChanged,
|
||||||
|
this.onJoinedChannelAdded,
|
||||||
|
this.onJoinedChannelDeleted,
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
void channelDismissed(ChannelInfo info) {
|
||||||
|
onChannelDismissed?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Channel information changed
|
||||||
|
void channelInfoChanged(ChannelInfo info) {
|
||||||
|
onChannelInfoChanged?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Channel member added
|
||||||
|
void channelMemberAdded(ChannelMembersInfo info) {
|
||||||
|
onChannelMemberAdded?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Channel member deleted
|
||||||
|
void channelMemberDeleted(ChannelMembersInfo info) {
|
||||||
|
onChannelMemberDeleted?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Channel member information changed
|
||||||
|
void channelMemberInfoChanged(ChannelMembersInfo info) {
|
||||||
|
onChannelMemberInfoChanged?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Joined channel added
|
||||||
|
void joinedChannelAdded(ChannelInfo info) {
|
||||||
|
onJoinedChannelAdded?.call(info);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Joined channel deleted
|
||||||
|
void joinedChannelDeleted(ChannelInfo info) {
|
||||||
|
onJoinedChannelDeleted?.call(info);
|
||||||
|
}
|
||||||
|
}
|
||||||
323
lib/src/manager/im_channel_manager.dart
Normal file
@@ -0,0 +1,323 @@
|
|||||||
|
import 'dart:developer';
|
||||||
|
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
||||||
|
import 'package:flutter_openim_sdk/src/models/set_channel_member_info.dart';
|
||||||
|
|
||||||
|
import '../listener/channel_listener.dart';
|
||||||
|
import '../models/channel_info.dart';
|
||||||
|
|
||||||
|
class ChannelManager {
|
||||||
|
MethodChannel _channel;
|
||||||
|
late OnChannelListener listener;
|
||||||
|
|
||||||
|
ChannelManager(this._channel);
|
||||||
|
|
||||||
|
/// Channel relationship listener
|
||||||
|
Future setChannelListener(OnChannelListener listener) {
|
||||||
|
this.listener = listener;
|
||||||
|
return _channel.invokeMethod('setChannelListener', _buildParam({}));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Query channel member information
|
||||||
|
/// [channelID] Channel ID
|
||||||
|
/// [userIDList] List of user IDs
|
||||||
|
Future<List<ChannelMembersInfo>> getChannelMembersInfo({
|
||||||
|
required String channelID,
|
||||||
|
required List<String> userIDList,
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel
|
||||||
|
.invokeMethod(
|
||||||
|
'getChannelMembersInfo',
|
||||||
|
_buildParam({
|
||||||
|
'channelID': channelID,
|
||||||
|
'userIDList': userIDList,
|
||||||
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
|
}))
|
||||||
|
.then((value) =>
|
||||||
|
Utils.toList(value, (map) => ChannelMembersInfo.fromJson(map)));
|
||||||
|
|
||||||
|
/// Paginate and retrieve the channel member list
|
||||||
|
/// [channelID] Channel ID
|
||||||
|
/// [filter] Member filter (0: All, 1: Channel owner, 2: Administrator, 3: Regular member, 4: Admin + Regular member, 5: Channel owner + Admin)
|
||||||
|
/// [offset] Starting index
|
||||||
|
/// [count] Total count
|
||||||
|
Future<List<ChannelMembersInfo>> getChannelMemberList({
|
||||||
|
required String channelID,
|
||||||
|
int filter = 0,
|
||||||
|
int offset = 0,
|
||||||
|
int count = 0,
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel
|
||||||
|
.invokeMethod(
|
||||||
|
'getChannelMemberList',
|
||||||
|
_buildParam({
|
||||||
|
'channelID': channelID,
|
||||||
|
'filter': filter,
|
||||||
|
'offset': offset,
|
||||||
|
'count': count,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}))
|
||||||
|
.then((value) =>
|
||||||
|
Utils.toList(value, (map) => ChannelMembersInfo.fromJson(map)));
|
||||||
|
|
||||||
|
// /// Paginate and retrieve the channel member list as a map
|
||||||
|
// /// [channelID] Channel ID
|
||||||
|
// /// [filter] Member filter (0: All, 1: Channel owner, 2: Administrator, 3: Regular member, 4: Admin + Regular member, 5: Channel owner + Admin)
|
||||||
|
// /// [offset] Starting index
|
||||||
|
// /// [count] Total count
|
||||||
|
// Future<List<dynamic>> getChannelMemberListMap({
|
||||||
|
// required String channelID,
|
||||||
|
// int filter = 0,
|
||||||
|
// int offset = 0,
|
||||||
|
// int count = 0,
|
||||||
|
// String? operationID,
|
||||||
|
// }) =>
|
||||||
|
// _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'getChannelMemberList',
|
||||||
|
// _buildParam({
|
||||||
|
// 'channelID': channelID,
|
||||||
|
// 'filter': filter,
|
||||||
|
// 'offset': offset,
|
||||||
|
// 'count': count,
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toListMap(value));
|
||||||
|
|
||||||
|
// /// Query the list of joined channels
|
||||||
|
// Future<List<ChannelInfo>> getJoinedChannelList({String? operationID}) => _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'getJoinedChannelList',
|
||||||
|
// _buildParam({
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toList(value, (map) => ChannelInfo.fromJson(map)));
|
||||||
|
//
|
||||||
|
// Future<List<ChannelInfo>> getJoinedChannelListPage({String? operationID, int offset = 0, int count = 40}) => _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'getJoinedChannelListPage',
|
||||||
|
// _buildParam({
|
||||||
|
// 'offset': offset,
|
||||||
|
// 'count': count,
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toList(value, (map) => ChannelInfo.fromJson(map)));
|
||||||
|
|
||||||
|
// /// Query the list of joined channels
|
||||||
|
// Future<List<dynamic>> getJoinedChannelListMap({String? operationID}) =>
|
||||||
|
// _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'getJoinedChannelList',
|
||||||
|
// _buildParam({
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toListMap(value));
|
||||||
|
|
||||||
|
/// Check if the user has joined a channel
|
||||||
|
/// [channelID] Channel ID
|
||||||
|
Future<bool> isJoinedChannel({
|
||||||
|
required String channelID,
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel
|
||||||
|
.invokeMethod(
|
||||||
|
'isJoinChannel',
|
||||||
|
_buildParam({
|
||||||
|
'channelID': channelID,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}))
|
||||||
|
.then((value) => value == 'true' ? true : false);
|
||||||
|
|
||||||
|
/// Query channel information
|
||||||
|
Future<List<ChannelInfo>> getChannelsInfo({
|
||||||
|
required List<String> channelIDList,
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel
|
||||||
|
.invokeMethod(
|
||||||
|
'getChannelsInfo',
|
||||||
|
_buildParam({
|
||||||
|
'channelIDList': channelIDList,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}))
|
||||||
|
.then((value) =>
|
||||||
|
Utils.toList(value, (map) => ChannelInfo.fromJson(map)));
|
||||||
|
|
||||||
|
/// Apply to join a channel, requiring approval from an administrator or the channel.
|
||||||
|
/// [joinSource] 2: Invited, 3: Searched, 4: Using a QR code
|
||||||
|
Future<dynamic> joinChannel(
|
||||||
|
{required String channelID,
|
||||||
|
String? reason,
|
||||||
|
String? operationID,
|
||||||
|
int joinSource = 3,
|
||||||
|
String? ex}) =>
|
||||||
|
_channel.invokeMethod(
|
||||||
|
'joinChannel',
|
||||||
|
_buildParam({
|
||||||
|
'channelID': channelID,
|
||||||
|
'reason': reason,
|
||||||
|
'joinSource': joinSource,
|
||||||
|
'ex': ex,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}));
|
||||||
|
|
||||||
|
/// Exit a channel
|
||||||
|
Future<dynamic> quitChannel({
|
||||||
|
required String channelID,
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel.invokeMethod(
|
||||||
|
'quitChannel',
|
||||||
|
_buildParam({
|
||||||
|
'channelID': channelID,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}));
|
||||||
|
|
||||||
|
//
|
||||||
|
// /// Query a channel
|
||||||
|
// /// [keywordList] Search keywords; currently, only one keyword is supported, and it cannot be empty.
|
||||||
|
// /// [isSearchChannelID] Whether to search by channel ID (Note: cannot set both to false at the same time); defaults to false if not set.
|
||||||
|
// /// [isSearchChannelName] Whether to search by channel name; defaults to false if not set.
|
||||||
|
// Future<List<ChannelInfo>> searchChannels({
|
||||||
|
// List<String> keywordList = const [],
|
||||||
|
// bool isSearchChannelID = false,
|
||||||
|
// bool isSearchChannelName = false,
|
||||||
|
// String? operationID,
|
||||||
|
// }) =>
|
||||||
|
// _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'searchChannels',
|
||||||
|
// _buildParam({
|
||||||
|
// 'searchParam': {
|
||||||
|
// 'keywordList': keywordList,
|
||||||
|
// 'isSearchChannelID': isSearchChannelID,
|
||||||
|
// 'isSearchChannelName': isSearchChannelName,
|
||||||
|
// },
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toList(value, (map) => ChannelInfo.fromJson(map)));
|
||||||
|
|
||||||
|
// /// Get a channel member list based on join time
|
||||||
|
// Future<List<ChannelMembersInfo>> getChannelMemberListByJoinTime({
|
||||||
|
// required String channelID,
|
||||||
|
// int offset = 0,
|
||||||
|
// int count = 0,
|
||||||
|
// int joinTimeBegin = 0,
|
||||||
|
// int joinTimeEnd = 0,
|
||||||
|
// List<String> filterUserIDList = const [],
|
||||||
|
// String? operationID,
|
||||||
|
// }) =>
|
||||||
|
// _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'getChannelMemberListByJoinTimeFilter',
|
||||||
|
// _buildParam({
|
||||||
|
// 'channelID': channelID,
|
||||||
|
// 'offset': offset,
|
||||||
|
// 'count': count,
|
||||||
|
// 'joinTimeBegin': joinTimeBegin,
|
||||||
|
// 'joinTimeEnd': joinTimeEnd,
|
||||||
|
// 'excludeUserIDList': filterUserIDList,
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toList(value, (map) => ChannelMembersInfo.fromJson(map)));
|
||||||
|
|
||||||
|
// /// Search for channel members
|
||||||
|
// /// [channelID] Channel ID
|
||||||
|
// /// [keywordList] Search keywords; currently, only one keyword is supported, and it cannot be empty.
|
||||||
|
// /// [isSearchUserID] Whether to search by member ID
|
||||||
|
// /// [isSearchMemberNickname] Whether to search by member nickname
|
||||||
|
// /// [offset] Start index
|
||||||
|
// /// [count] Total count to retrieve
|
||||||
|
// Future<List<ChannelMembersInfo>> searchChannelMembers({
|
||||||
|
// required String channelID,
|
||||||
|
// List<String> keywordList = const [],
|
||||||
|
// bool isSearchUserID = false,
|
||||||
|
// bool isSearchMemberNickname = false,
|
||||||
|
// int offset = 0,
|
||||||
|
// int count = 40,
|
||||||
|
// String? operationID,
|
||||||
|
// }) =>
|
||||||
|
// _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'searchChannelMembers',
|
||||||
|
// _buildParam({
|
||||||
|
// 'searchParam': {
|
||||||
|
// 'channelID': channelID,
|
||||||
|
// 'keywordList': keywordList,
|
||||||
|
// 'isSearchUserID': isSearchUserID,
|
||||||
|
// 'isSearchMemberNickname': isSearchMemberNickname,
|
||||||
|
// 'offset': offset,
|
||||||
|
// 'count': count,
|
||||||
|
// },
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toList(value, (map) => ChannelMembersInfo.fromJson(map)));
|
||||||
|
|
||||||
|
// /// Query a channel
|
||||||
|
// /// [channelID] Channel ID
|
||||||
|
// /// [keywordList] Search keyword, currently only supports searching with one keyword, and it cannot be empty
|
||||||
|
// /// [isSearchUserID] Whether to search member IDs with the keyword
|
||||||
|
// /// [isSearchMemberNickname] Whether to search member nicknames with the keyword
|
||||||
|
// /// [offset] Starting index
|
||||||
|
// /// [count] Total number to retrieve each time
|
||||||
|
// Future<List<dynamic>> searchChannelMembersListMap({
|
||||||
|
// required String channelID,
|
||||||
|
// List<String> keywordList = const [],
|
||||||
|
// bool isSearchUserID = false,
|
||||||
|
// bool isSearchMemberNickname = false,
|
||||||
|
// int offset = 0,
|
||||||
|
// int count = 40,
|
||||||
|
// String? operationID,
|
||||||
|
// }) =>
|
||||||
|
// _channel
|
||||||
|
// .invokeMethod(
|
||||||
|
// 'searchChannelMembers',
|
||||||
|
// _buildParam({
|
||||||
|
// 'searchParam': {
|
||||||
|
// 'channelID': channelID,
|
||||||
|
// 'keywordList': keywordList,
|
||||||
|
// 'isSearchUserID': isSearchUserID,
|
||||||
|
// 'isSearchMemberNickname': isSearchMemberNickname,
|
||||||
|
// 'offset': offset,
|
||||||
|
// 'count': count,
|
||||||
|
// },
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }))
|
||||||
|
// .then((value) => Utils.toListMap(value));
|
||||||
|
//
|
||||||
|
// /// Modify the ChannelMemberInfo ex field
|
||||||
|
// Future<dynamic> setChannelMemberInfo({
|
||||||
|
// required SetChannelMemberInfo channelMembersInfo,
|
||||||
|
// String? operationID,
|
||||||
|
// }) =>
|
||||||
|
// _channel.invokeMethod(
|
||||||
|
// 'setChannelMemberInfo',
|
||||||
|
// _buildParam({
|
||||||
|
// 'info': channelMembersInfo.toJson(),
|
||||||
|
// 'operationID': Utils.checkOperationID(operationID),
|
||||||
|
// }));
|
||||||
|
|
||||||
|
Future<dynamic> getUsersInChannel(
|
||||||
|
String channelID,
|
||||||
|
List<String> userIDs, {
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel.invokeMethod(
|
||||||
|
'getUsersInChannel',
|
||||||
|
_buildParam({
|
||||||
|
'channelID': channelID,
|
||||||
|
'userIDs': userIDs,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}));
|
||||||
|
|
||||||
|
static Map _buildParam(Map<String, dynamic> param) {
|
||||||
|
param["ManagerName"] = "channelManager";
|
||||||
|
param = Utils.cleanMap(param);
|
||||||
|
log('param: $param');
|
||||||
|
|
||||||
|
return param;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -19,7 +19,7 @@ class FriendshipManager {
|
|||||||
|
|
||||||
/// Query Friend Information
|
/// Query Friend Information
|
||||||
/// [userIDList] List of user IDs
|
/// [userIDList] List of user IDs
|
||||||
Future<List<PublicUserInfo>> getFriendsInfo({
|
Future<List<FriendInfo>> getFriendsInfo({
|
||||||
required List<String> userIDList,
|
required List<String> userIDList,
|
||||||
bool filterBlack = false,
|
bool filterBlack = false,
|
||||||
String? operationID,
|
String? operationID,
|
||||||
@@ -32,7 +32,7 @@ class FriendshipManager {
|
|||||||
'filterBlack': filterBlack,
|
'filterBlack': filterBlack,
|
||||||
"operationID": Utils.checkOperationID(operationID),
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toList(value, (v) => PublicUserInfo.fromJson(v)));
|
.then((value) => Utils.toList(value, (v) => FriendInfo.fromJson(v)));
|
||||||
|
|
||||||
/// Send a Friend Request, the other party needs to accept the request to become friends.
|
/// Send a Friend Request, the other party needs to accept the request to become friends.
|
||||||
/// [userID] User ID to be invited
|
/// [userID] User ID to be invited
|
||||||
@@ -69,7 +69,7 @@ class FriendshipManager {
|
|||||||
.then((value) => Utils.toList(value, (v) => FriendApplicationInfo.fromJson(v)));
|
.then((value) => Utils.toList(value, (v) => FriendApplicationInfo.fromJson(v)));
|
||||||
|
|
||||||
/// Get Friend List, including friends who have been put into the blacklist
|
/// Get Friend List, including friends who have been put into the blacklist
|
||||||
Future<List<PublicUserInfo>> getFriendList({
|
Future<List<FriendInfo>> getFriendList({
|
||||||
String? operationID,
|
String? operationID,
|
||||||
bool filterBlack = false,
|
bool filterBlack = false,
|
||||||
}) =>
|
}) =>
|
||||||
@@ -80,9 +80,9 @@ class FriendshipManager {
|
|||||||
'filterBlack': filterBlack,
|
'filterBlack': filterBlack,
|
||||||
"operationID": Utils.checkOperationID(operationID),
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toList(value, (v) => PublicUserInfo.fromJson(v)));
|
.then((value) => Utils.toList(value, (v) => FriendInfo.fromJson(v)));
|
||||||
|
|
||||||
Future<List<PublicUserInfo>> getFriendListPage({
|
Future<List<FriendInfo>> getFriendListPage({
|
||||||
bool filterBlack = false,
|
bool filterBlack = false,
|
||||||
int offset = 0,
|
int offset = 0,
|
||||||
int count = 40,
|
int count = 40,
|
||||||
@@ -97,7 +97,7 @@ class FriendshipManager {
|
|||||||
'filterBlack': filterBlack,
|
'filterBlack': filterBlack,
|
||||||
"operationID": Utils.checkOperationID(operationID),
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toList(value, (v) => PublicUserInfo.fromJson(v)));
|
.then((value) => Utils.toList(value, (v) => FriendInfo.fromJson(v)));
|
||||||
|
|
||||||
/// Get Friend List, including friends who have been put into the blacklist (returns a map)
|
/// Get Friend List, including friends who have been put into the blacklist (returns a map)
|
||||||
Future<List<dynamic>> getFriendListMap({String? operationID}) => _channel
|
Future<List<dynamic>> getFriendListMap({String? operationID}) => _channel
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ import 'package:flutter/services.dart';
|
|||||||
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
||||||
import 'package:flutter_openim_sdk/src/logger.dart';
|
import 'package:flutter_openim_sdk/src/logger.dart';
|
||||||
|
|
||||||
|
import '../models/channel_info.dart';
|
||||||
|
import 'im_channel_manager.dart';
|
||||||
|
|
||||||
class IMManager {
|
class IMManager {
|
||||||
MethodChannel _channel;
|
MethodChannel _channel;
|
||||||
late ConversationManager conversationManager;
|
late ConversationManager conversationManager;
|
||||||
@@ -13,6 +16,7 @@ class IMManager {
|
|||||||
late MessageManager messageManager;
|
late MessageManager messageManager;
|
||||||
late GroupManager groupManager;
|
late GroupManager groupManager;
|
||||||
late UserManager userManager;
|
late UserManager userManager;
|
||||||
|
late ChannelManager channelManager;
|
||||||
|
|
||||||
late OnConnectListener _connectListener;
|
late OnConnectListener _connectListener;
|
||||||
OnListenerForService? _listenerForService;
|
OnListenerForService? _listenerForService;
|
||||||
@@ -29,6 +33,7 @@ class IMManager {
|
|||||||
friendshipManager = FriendshipManager(_channel);
|
friendshipManager = FriendshipManager(_channel);
|
||||||
messageManager = MessageManager(_channel);
|
messageManager = MessageManager(_channel);
|
||||||
groupManager = GroupManager(_channel);
|
groupManager = GroupManager(_channel);
|
||||||
|
channelManager = ChannelManager(_channel);
|
||||||
userManager = UserManager(_channel);
|
userManager = UserManager(_channel);
|
||||||
_addNativeCallback(_channel);
|
_addNativeCallback(_channel);
|
||||||
}
|
}
|
||||||
@@ -123,7 +128,44 @@ class IMManager {
|
|||||||
groupManager.listener.joinedGroupDeleted(i);
|
groupManager.listener.joinedGroupDeleted(i);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else if (call.method == ListenerType.advancedMsgListener) {
|
} else if (call.method == ListenerType.channelListener) {
|
||||||
|
String type = call.arguments['type'];
|
||||||
|
dynamic data = call.arguments['data'];
|
||||||
|
switch (type) {
|
||||||
|
|
||||||
|
case 'onChannelDismissed':
|
||||||
|
final i = Utils.toObj(data, (map) => ChannelInfo.fromJson(map));
|
||||||
|
channelManager.listener.channelDismissed(i);
|
||||||
|
break;
|
||||||
|
case 'onChannelInfoChanged':
|
||||||
|
final i = Utils.toObj(data, (map) => ChannelInfo.fromJson(map));
|
||||||
|
channelManager.listener.channelInfoChanged(i);
|
||||||
|
break;
|
||||||
|
case 'onChannelMemberAdded':
|
||||||
|
final i = Utils.toObj(
|
||||||
|
data, (map) => ChannelMembersInfo.fromJson(map));
|
||||||
|
channelManager.listener.channelMemberAdded(i);
|
||||||
|
break;
|
||||||
|
case 'onChannelMemberDeleted':
|
||||||
|
final i = Utils.toObj(
|
||||||
|
data, (map) => ChannelMembersInfo.fromJson(map));
|
||||||
|
channelManager.listener.channelMemberDeleted(i);
|
||||||
|
break;
|
||||||
|
case 'onChannelMemberInfoChanged':
|
||||||
|
final i = Utils.toObj(
|
||||||
|
data, (map) => ChannelMembersInfo.fromJson(map));
|
||||||
|
channelManager.listener.channelMemberInfoChanged(i);
|
||||||
|
break;
|
||||||
|
case 'onJoinedChannelAdded':
|
||||||
|
final i = Utils.toObj(data, (map) => ChannelInfo.fromJson(map));
|
||||||
|
channelManager.listener.joinedChannelAdded(i);
|
||||||
|
break;
|
||||||
|
case 'onJoinedChannelDeleted':
|
||||||
|
final i = Utils.toObj(data, (map) => ChannelInfo.fromJson(map));
|
||||||
|
channelManager.listener.joinedChannelDeleted(i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}else if (call.method == ListenerType.advancedMsgListener) {
|
||||||
var type = call.arguments['type'];
|
var type = call.arguments['type'];
|
||||||
// var id = call.arguments['data']['id'];
|
// var id = call.arguments['data']['id'];
|
||||||
switch (type) {
|
switch (type) {
|
||||||
@@ -137,6 +179,11 @@ class IMManager {
|
|||||||
var info = Utils.toObj(value, (map) => RevokedInfo.fromJson(map));
|
var info = Utils.toObj(value, (map) => RevokedInfo.fromJson(map));
|
||||||
messageManager.msgListener.newRecvMessageRevoked(info);
|
messageManager.msgListener.newRecvMessageRevoked(info);
|
||||||
break;
|
break;
|
||||||
|
case 'onNewRecvMessageEdited':
|
||||||
|
var value = call.arguments['data']['messageEdited'];
|
||||||
|
var info = Utils.toObj(value, (map) => EditedInfo.fromJson(map));
|
||||||
|
messageManager.msgListener.newRecvMessageEdited(info);
|
||||||
|
break;
|
||||||
case 'onRecvC2CReadReceipt':
|
case 'onRecvC2CReadReceipt':
|
||||||
var value = call.arguments['data']['msgReceiptList'];
|
var value = call.arguments['data']['msgReceiptList'];
|
||||||
var list = Utils.toList(value, (map) => ReadReceiptInfo.fromJson(map));
|
var list = Utils.toList(value, (map) => ReadReceiptInfo.fromJson(map));
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ class MessageManager {
|
|||||||
required OfflinePushInfo offlinePushInfo,
|
required OfflinePushInfo offlinePushInfo,
|
||||||
String? userID,
|
String? userID,
|
||||||
String? groupID,
|
String? groupID,
|
||||||
|
String? channelID,
|
||||||
bool isOnlineOnly = false,
|
bool isOnlineOnly = false,
|
||||||
String? operationID,
|
String? operationID,
|
||||||
}) =>
|
}) =>
|
||||||
@@ -47,6 +48,7 @@ class MessageManager {
|
|||||||
'offlinePushInfo': offlinePushInfo.toJson(),
|
'offlinePushInfo': offlinePushInfo.toJson(),
|
||||||
'userID': userID ?? '',
|
'userID': userID ?? '',
|
||||||
'groupID': groupID ?? '',
|
'groupID': groupID ?? '',
|
||||||
|
'channelID': channelID ?? '',
|
||||||
'isOnlineOnly': isOnlineOnly,
|
'isOnlineOnly': isOnlineOnly,
|
||||||
'operationID': Utils.checkOperationID(operationID),
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
@@ -130,6 +132,7 @@ class MessageManager {
|
|||||||
/// [message] Message content
|
/// [message] Message content
|
||||||
Future<Message> insertGroupMessageToLocalStorage({
|
Future<Message> insertGroupMessageToLocalStorage({
|
||||||
String? groupID,
|
String? groupID,
|
||||||
|
String? channelID,
|
||||||
String? senderID,
|
String? senderID,
|
||||||
Message? message,
|
Message? message,
|
||||||
String? operationID,
|
String? operationID,
|
||||||
@@ -140,6 +143,7 @@ class MessageManager {
|
|||||||
_buildParam({
|
_buildParam({
|
||||||
"message": message?.toJson(),
|
"message": message?.toJson(),
|
||||||
"groupID": groupID,
|
"groupID": groupID,
|
||||||
|
"channelID": channelID,
|
||||||
"senderID": senderID,
|
"senderID": senderID,
|
||||||
"operationID": Utils.checkOperationID(operationID),
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
@@ -147,7 +151,8 @@ class MessageManager {
|
|||||||
|
|
||||||
/// Typing status update
|
/// Typing status update
|
||||||
/// [msgTip] Custom content
|
/// [msgTip] Custom content
|
||||||
@Deprecated('Use [OpenIM.iMManager.conversationManager.changeInputStates(conversationID:focus:)] instead')
|
@Deprecated(
|
||||||
|
'Use [OpenIM.iMManager.conversationManager.changeInputStates(conversationID:focus:)] instead')
|
||||||
Future typingStatusUpdate({
|
Future typingStatusUpdate({
|
||||||
required String userID,
|
required String userID,
|
||||||
String? msgTip,
|
String? msgTip,
|
||||||
@@ -527,7 +532,8 @@ class MessageManager {
|
|||||||
},
|
},
|
||||||
'operationID': Utils.checkOperationID(operationID),
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toObj(value, (map) => SearchResult.fromJson(map)));
|
.then((value) =>
|
||||||
|
Utils.toObj(value, (map) => SearchResult.fromJson(map)));
|
||||||
|
|
||||||
/// Revoke a message
|
/// Revoke a message
|
||||||
/// [message] The message to be revoked
|
/// [message] The message to be revoked
|
||||||
@@ -544,6 +550,23 @@ class MessageManager {
|
|||||||
"operationID": Utils.checkOperationID(operationID),
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
/// Edit a message
|
||||||
|
/// [message] The message to be edited
|
||||||
|
Future editMessage({
|
||||||
|
required String conversationID,
|
||||||
|
required String clientMsgID,
|
||||||
|
String? operationID,
|
||||||
|
required Message message,
|
||||||
|
}) =>
|
||||||
|
_channel.invokeMethod(
|
||||||
|
'editMessage',
|
||||||
|
_buildParam({
|
||||||
|
'conversationID': conversationID,
|
||||||
|
'clientMsgID': clientMsgID,
|
||||||
|
"operationID": Utils.checkOperationID(operationID),
|
||||||
|
'message': message.toJson(),
|
||||||
|
}));
|
||||||
|
|
||||||
/// Mark messages as read
|
/// Mark messages as read
|
||||||
/// [conversationID] Conversation ID
|
/// [conversationID] Conversation ID
|
||||||
/// [messageIDList] List of clientMsgIDs of messages to be marked as read
|
/// [messageIDList] List of clientMsgIDs of messages to be marked as read
|
||||||
@@ -569,7 +592,7 @@ class MessageManager {
|
|||||||
Future<AdvancedMessage> getAdvancedHistoryMessageList({
|
Future<AdvancedMessage> getAdvancedHistoryMessageList({
|
||||||
String? conversationID,
|
String? conversationID,
|
||||||
Message? startMsg,
|
Message? startMsg,
|
||||||
int? lastMinSeq,
|
GetHistoryViewType viewType = GetHistoryViewType.history,
|
||||||
int? count,
|
int? count,
|
||||||
String? operationID,
|
String? operationID,
|
||||||
}) =>
|
}) =>
|
||||||
@@ -580,10 +603,11 @@ class MessageManager {
|
|||||||
'conversationID': conversationID ?? '',
|
'conversationID': conversationID ?? '',
|
||||||
'startClientMsgID': startMsg?.clientMsgID ?? '',
|
'startClientMsgID': startMsg?.clientMsgID ?? '',
|
||||||
'count': count ?? 40,
|
'count': count ?? 40,
|
||||||
'lastMinSeq': lastMinSeq ?? 0,
|
'viewType': viewType.rawValue,
|
||||||
'operationID': Utils.checkOperationID(operationID),
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toObj(value, (map) => AdvancedMessage.fromJson(map)));
|
.then((value) =>
|
||||||
|
Utils.toObj(value, (map) => AdvancedMessage.fromJson(map)));
|
||||||
|
|
||||||
/// Get chat history (newly received chat history after startMsg). Used for locating a specific message in global search and then fetching messages received after that message.
|
/// Get chat history (newly received chat history after startMsg). Used for locating a specific message in global search and then fetching messages received after that message.
|
||||||
/// [conversationID] Conversation ID, can be used for querying notifications
|
/// [conversationID] Conversation ID, can be used for querying notifications
|
||||||
@@ -592,7 +616,7 @@ class MessageManager {
|
|||||||
Future<AdvancedMessage> getAdvancedHistoryMessageListReverse({
|
Future<AdvancedMessage> getAdvancedHistoryMessageListReverse({
|
||||||
String? conversationID,
|
String? conversationID,
|
||||||
Message? startMsg,
|
Message? startMsg,
|
||||||
int? lastMinSeq,
|
GetHistoryViewType viewType = GetHistoryViewType.history,
|
||||||
int? count,
|
int? count,
|
||||||
String? operationID,
|
String? operationID,
|
||||||
}) =>
|
}) =>
|
||||||
@@ -603,10 +627,11 @@ class MessageManager {
|
|||||||
'conversationID': conversationID ?? '',
|
'conversationID': conversationID ?? '',
|
||||||
'startClientMsgID': startMsg?.clientMsgID ?? '',
|
'startClientMsgID': startMsg?.clientMsgID ?? '',
|
||||||
'count': count ?? 40,
|
'count': count ?? 40,
|
||||||
'lastMinSeq': lastMinSeq ?? 0,
|
'viewType': viewType.rawValue,
|
||||||
'operationID': Utils.checkOperationID(operationID),
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toObj(value, (map) => AdvancedMessage.fromJson(map)));
|
.then((value) =>
|
||||||
|
Utils.toObj(value, (map) => AdvancedMessage.fromJson(map)));
|
||||||
|
|
||||||
/// Find message details
|
/// Find message details
|
||||||
/// [conversationID] Conversation ID
|
/// [conversationID] Conversation ID
|
||||||
@@ -622,7 +647,8 @@ class MessageManager {
|
|||||||
'searchParams': searchParams.map((e) => e.toJson()).toList(),
|
'searchParams': searchParams.map((e) => e.toJson()).toList(),
|
||||||
'operationID': Utils.checkOperationID(operationID),
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
.then((value) => Utils.toObj(value, (map) => SearchResult.fromJson(map)));
|
.then((value) =>
|
||||||
|
Utils.toObj(value, (map) => SearchResult.fromJson(map)));
|
||||||
|
|
||||||
/// Rich text message
|
/// Rich text message
|
||||||
/// [text] Input content
|
/// [text] Input content
|
||||||
@@ -674,6 +700,7 @@ class MessageManager {
|
|||||||
required OfflinePushInfo offlinePushInfo,
|
required OfflinePushInfo offlinePushInfo,
|
||||||
String? userID,
|
String? userID,
|
||||||
String? groupID,
|
String? groupID,
|
||||||
|
String? channelID,
|
||||||
bool isOnlineOnly = false,
|
bool isOnlineOnly = false,
|
||||||
String? operationID,
|
String? operationID,
|
||||||
}) =>
|
}) =>
|
||||||
@@ -685,6 +712,7 @@ class MessageManager {
|
|||||||
'offlinePushInfo': offlinePushInfo.toJson(),
|
'offlinePushInfo': offlinePushInfo.toJson(),
|
||||||
'userID': userID ?? '',
|
'userID': userID ?? '',
|
||||||
'groupID': groupID ?? '',
|
'groupID': groupID ?? '',
|
||||||
|
'channelID': channelID ?? '',
|
||||||
'isOnlineOnly': isOnlineOnly,
|
'isOnlineOnly': isOnlineOnly,
|
||||||
'operationID': Utils.checkOperationID(operationID),
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
}))
|
}))
|
||||||
@@ -788,6 +816,28 @@ class MessageManager {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Fetch Surrounding Messages
|
||||||
|
/// [message] Message content
|
||||||
|
/// [before] message index - before
|
||||||
|
/// [after] message index - after
|
||||||
|
/// [operationID] Operation ID
|
||||||
|
Future<List<Message>> FetchSurroundingMessages({
|
||||||
|
required Message message,
|
||||||
|
int? before,
|
||||||
|
int? after,
|
||||||
|
String? operationID,
|
||||||
|
}) =>
|
||||||
|
_channel
|
||||||
|
.invokeMethod(
|
||||||
|
'fetchSurroundingMessages',
|
||||||
|
_buildParam({
|
||||||
|
'message': message.toJson(),
|
||||||
|
'before': before ?? 0,
|
||||||
|
'after': after ?? 0,
|
||||||
|
'operationID': Utils.checkOperationID(operationID),
|
||||||
|
}))
|
||||||
|
.then((value) => Utils.toList(value, (map) => Message.fromJson(map)));
|
||||||
|
|
||||||
static Map _buildParam(Map<String, dynamic> param) {
|
static Map _buildParam(Map<String, dynamic> param) {
|
||||||
param["ManagerName"] = "messageManager";
|
param["ManagerName"] = "messageManager";
|
||||||
param = Utils.cleanMap(param);
|
param = Utils.cleanMap(param);
|
||||||
|
|||||||
165
lib/src/models/channel_info.dart
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
||||||
|
|
||||||
|
/// Channel Information
|
||||||
|
class ChannelInfo {
|
||||||
|
/// Channel ID
|
||||||
|
String channelID;
|
||||||
|
|
||||||
|
/// Channel Name
|
||||||
|
String? channelName;
|
||||||
|
|
||||||
|
/// Channel Announcement
|
||||||
|
String? notification;
|
||||||
|
|
||||||
|
/// Channel Introduction
|
||||||
|
String? introduction;
|
||||||
|
|
||||||
|
/// Channel Avatar
|
||||||
|
String? faceURL;
|
||||||
|
|
||||||
|
/// Creation Time
|
||||||
|
int? createTime;
|
||||||
|
|
||||||
|
/// Number of Channel Members
|
||||||
|
int? memberCount;
|
||||||
|
|
||||||
|
/// Channel Status: 0 - Normal, 1 - Blocked, 2 - Dissolved, 3 - Muted
|
||||||
|
int? status;
|
||||||
|
|
||||||
|
/// Creator's ID
|
||||||
|
String? creatorUserID;
|
||||||
|
|
||||||
|
/// Channel Type [ChannelType]
|
||||||
|
int? channelType;
|
||||||
|
|
||||||
|
/// Extra Information
|
||||||
|
String? ex;
|
||||||
|
|
||||||
|
|
||||||
|
ChannelInfo({
|
||||||
|
required this.channelID,
|
||||||
|
this.channelName,
|
||||||
|
this.notification,
|
||||||
|
this.introduction,
|
||||||
|
this.faceURL,
|
||||||
|
this.createTime,
|
||||||
|
this.memberCount,
|
||||||
|
this.status,
|
||||||
|
this.creatorUserID,
|
||||||
|
this.channelType,
|
||||||
|
this.ex,
|
||||||
|
});
|
||||||
|
|
||||||
|
ChannelInfo.fromJson(Map<String, dynamic> json) : channelID = json['channelID'] {
|
||||||
|
channelName = json['channelName'];
|
||||||
|
notification = json['notification'];
|
||||||
|
introduction = json['introduction'];
|
||||||
|
faceURL = json['faceURL'];
|
||||||
|
createTime = json['createTime'];
|
||||||
|
memberCount = json['memberCount'];
|
||||||
|
status = json['status'];
|
||||||
|
creatorUserID = json['creatorUserID'];
|
||||||
|
channelType = json['channelType'];
|
||||||
|
ex = json['ex'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
data['channelID'] = this.channelID;
|
||||||
|
data['channelName'] = this.channelName;
|
||||||
|
data['notification'] = this.notification;
|
||||||
|
data['introduction'] = this.introduction;
|
||||||
|
data['faceURL'] = this.faceURL;
|
||||||
|
data['createTime'] = this.createTime;
|
||||||
|
data['memberCount'] = this.memberCount;
|
||||||
|
data['status'] = this.status;
|
||||||
|
data['creatorUserID'] = this.creatorUserID;
|
||||||
|
data['channelType'] = this.channelType;
|
||||||
|
data['ex'] = this.ex;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Corresponding Conversation Type for Channel Type
|
||||||
|
int get sessionType => ConversationType.superChannel;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) || other is ChannelInfo && runtimeType == other.runtimeType && channelID == other.channelID;
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => channelID.hashCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Channel Member Information
|
||||||
|
class ChannelMembersInfo {
|
||||||
|
/// Channel ID
|
||||||
|
String? channelID;
|
||||||
|
|
||||||
|
/// User ID
|
||||||
|
String? userID;
|
||||||
|
|
||||||
|
/// Nickname
|
||||||
|
String? nickname;
|
||||||
|
|
||||||
|
/// Avatar
|
||||||
|
String? faceURL;
|
||||||
|
|
||||||
|
/// Role [ChannelRoleLevel]
|
||||||
|
int? roleLevel;
|
||||||
|
|
||||||
|
/// Join Time
|
||||||
|
int? joinTime;
|
||||||
|
|
||||||
|
/// Extra Information
|
||||||
|
String? ex;
|
||||||
|
|
||||||
|
/// Mute End Time (seconds)
|
||||||
|
int? muteEndTime;
|
||||||
|
|
||||||
|
ChannelMembersInfo({
|
||||||
|
this.channelID,
|
||||||
|
this.userID,
|
||||||
|
this.roleLevel,
|
||||||
|
this.joinTime,
|
||||||
|
this.nickname,
|
||||||
|
this.faceURL,
|
||||||
|
this.ex,
|
||||||
|
this.muteEndTime,
|
||||||
|
});
|
||||||
|
|
||||||
|
ChannelMembersInfo.fromJson(Map<String, dynamic> json) {
|
||||||
|
channelID = json['channelID'];
|
||||||
|
userID = json['userID'];
|
||||||
|
roleLevel = json['roleLevel'];
|
||||||
|
joinTime = json['joinTime'];
|
||||||
|
nickname = json['nickname'];
|
||||||
|
faceURL = json['faceURL'];
|
||||||
|
ex = json['ex'];
|
||||||
|
muteEndTime = json['muteEndTime'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
data['channelID'] = this.channelID;
|
||||||
|
data['userID'] = this.userID;
|
||||||
|
data['roleLevel'] = this.roleLevel;
|
||||||
|
data['joinTime'] = this.joinTime;
|
||||||
|
data['nickname'] = this.nickname;
|
||||||
|
data['faceURL'] = this.faceURL;
|
||||||
|
data['ex'] = this.ex;
|
||||||
|
data['muteEndTime'] = this.muteEndTime;
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool operator ==(Object other) =>
|
||||||
|
identical(this, other) ||
|
||||||
|
other is ChannelMembersInfo &&
|
||||||
|
runtimeType == other.runtimeType &&
|
||||||
|
channelID == other.channelID &&
|
||||||
|
userID == other.userID;
|
||||||
|
|
||||||
|
@override
|
||||||
|
int get hashCode => channelID.hashCode ^ userID.hashCode;
|
||||||
|
}
|
||||||
@@ -15,6 +15,9 @@ class ConversationInfo {
|
|||||||
// Group ID in case of a group chat
|
// Group ID in case of a group chat
|
||||||
String? groupID;
|
String? groupID;
|
||||||
|
|
||||||
|
// Channel ID in case of a channel chat
|
||||||
|
String? channelID;
|
||||||
|
|
||||||
// Display name or nickname
|
// Display name or nickname
|
||||||
String? showName;
|
String? showName;
|
||||||
|
|
||||||
@@ -69,6 +72,7 @@ class ConversationInfo {
|
|||||||
this.conversationType,
|
this.conversationType,
|
||||||
this.userID,
|
this.userID,
|
||||||
this.groupID,
|
this.groupID,
|
||||||
|
this.channelID,
|
||||||
this.showName,
|
this.showName,
|
||||||
this.faceURL,
|
this.faceURL,
|
||||||
this.recvMsgOpt,
|
this.recvMsgOpt,
|
||||||
@@ -91,6 +95,7 @@ class ConversationInfo {
|
|||||||
conversationType = json['conversationType'];
|
conversationType = json['conversationType'];
|
||||||
userID = json['userID'];
|
userID = json['userID'];
|
||||||
groupID = json['groupID'];
|
groupID = json['groupID'];
|
||||||
|
channelID = json['channelID'];
|
||||||
showName = json['showName'];
|
showName = json['showName'];
|
||||||
faceURL = json['faceURL'];
|
faceURL = json['faceURL'];
|
||||||
recvMsgOpt = json['recvMsgOpt'];
|
recvMsgOpt = json['recvMsgOpt'];
|
||||||
@@ -122,6 +127,7 @@ class ConversationInfo {
|
|||||||
data['conversationType'] = this.conversationType;
|
data['conversationType'] = this.conversationType;
|
||||||
data['userID'] = this.userID;
|
data['userID'] = this.userID;
|
||||||
data['groupID'] = this.groupID;
|
data['groupID'] = this.groupID;
|
||||||
|
data['channelID'] = this.channelID;
|
||||||
data['showName'] = this.showName;
|
data['showName'] = this.showName;
|
||||||
data['faceURL'] = this.faceURL;
|
data['faceURL'] = this.faceURL;
|
||||||
data['recvMsgOpt'] = this.recvMsgOpt;
|
data['recvMsgOpt'] = this.recvMsgOpt;
|
||||||
@@ -147,6 +153,10 @@ class ConversationInfo {
|
|||||||
// Check if it's a group chat
|
// Check if it's a group chat
|
||||||
bool get isGroupChat => conversationType == ConversationType.group || conversationType == ConversationType.superGroup;
|
bool get isGroupChat => conversationType == ConversationType.group || conversationType == ConversationType.superGroup;
|
||||||
|
|
||||||
|
// Check if it's a channel chat
|
||||||
|
bool get isChannelChat => conversationType == ConversationType.superChannel;
|
||||||
|
|
||||||
|
|
||||||
// Check if it's a valid conversation (not in a group if isNotInGroup is true)
|
// Check if it's a valid conversation (not in a group if isNotInGroup is true)
|
||||||
bool get isValid => isSingleChat || (isGroupChat && !isNotInGroup!);
|
bool get isValid => isSingleChat || (isGroupChat && !isNotInGroup!);
|
||||||
|
|
||||||
|
|||||||
@@ -42,6 +42,9 @@ class Message {
|
|||||||
/// Group ID.
|
/// Group ID.
|
||||||
String? groupID;
|
String? groupID;
|
||||||
|
|
||||||
|
/// Channel ID.
|
||||||
|
String? channelID;
|
||||||
|
|
||||||
/// Message localEx.
|
/// Message localEx.
|
||||||
String? localEx;
|
String? localEx;
|
||||||
|
|
||||||
@@ -137,6 +140,7 @@ class Message {
|
|||||||
this.senderNickname,
|
this.senderNickname,
|
||||||
this.senderFaceUrl,
|
this.senderFaceUrl,
|
||||||
this.groupID,
|
this.groupID,
|
||||||
|
this.channelID,
|
||||||
this.localEx,
|
this.localEx,
|
||||||
this.seq,
|
this.seq,
|
||||||
this.isRead,
|
this.isRead,
|
||||||
@@ -179,6 +183,7 @@ class Message {
|
|||||||
senderNickname = json['senderNickname'];
|
senderNickname = json['senderNickname'];
|
||||||
senderFaceUrl = json['senderFaceUrl'];
|
senderFaceUrl = json['senderFaceUrl'];
|
||||||
groupID = json['groupID'];
|
groupID = json['groupID'];
|
||||||
|
channelID = json['channelID'];
|
||||||
localEx = json['localEx'];
|
localEx = json['localEx'];
|
||||||
seq = json['seq'];
|
seq = json['seq'];
|
||||||
isRead = json['isRead'];
|
isRead = json['isRead'];
|
||||||
@@ -224,6 +229,7 @@ class Message {
|
|||||||
data['senderNickname'] = this.senderNickname;
|
data['senderNickname'] = this.senderNickname;
|
||||||
data['senderFaceUrl'] = this.senderFaceUrl;
|
data['senderFaceUrl'] = this.senderFaceUrl;
|
||||||
data['groupID'] = this.groupID;
|
data['groupID'] = this.groupID;
|
||||||
|
data['channelID'] = this.channelID;
|
||||||
data['localEx'] = this.localEx;
|
data['localEx'] = this.localEx;
|
||||||
data['seq'] = this.seq;
|
data['seq'] = this.seq;
|
||||||
data['isRead'] = this.isRead;
|
data['isRead'] = this.isRead;
|
||||||
@@ -275,6 +281,7 @@ class Message {
|
|||||||
senderNickname = message.senderNickname;
|
senderNickname = message.senderNickname;
|
||||||
senderFaceUrl = message.senderFaceUrl;
|
senderFaceUrl = message.senderFaceUrl;
|
||||||
groupID = message.groupID;
|
groupID = message.groupID;
|
||||||
|
channelID = message.channelID;
|
||||||
// content = message.content;
|
// content = message.content;
|
||||||
seq = message.seq;
|
seq = message.seq;
|
||||||
isRead = message.isRead;
|
isRead = message.isRead;
|
||||||
@@ -1116,6 +1123,82 @@ class RevokedInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// Message revocation details
|
||||||
|
class EditedInfo {
|
||||||
|
/// Editer's ID
|
||||||
|
String? editerID;
|
||||||
|
|
||||||
|
|
||||||
|
/// Message ID
|
||||||
|
String? clientMsgID;
|
||||||
|
|
||||||
|
/// Revocation time
|
||||||
|
int? editTime;
|
||||||
|
|
||||||
|
/// Message sending time
|
||||||
|
int? sourceMessageSendTime;
|
||||||
|
|
||||||
|
/// Message sender
|
||||||
|
String? sourceMessageSendID;
|
||||||
|
|
||||||
|
/// Message sender's nickname
|
||||||
|
String? sourceMessageSenderNickname;
|
||||||
|
|
||||||
|
/// Conversation type [ConversationType]
|
||||||
|
int? sessionType;
|
||||||
|
|
||||||
|
/// Message contentType
|
||||||
|
int? contentType;
|
||||||
|
|
||||||
|
/// Message content
|
||||||
|
String? content;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
EditedInfo({
|
||||||
|
this.editerID,
|
||||||
|
this.clientMsgID,
|
||||||
|
this.editTime,
|
||||||
|
this.sourceMessageSendTime,
|
||||||
|
this.sourceMessageSendID,
|
||||||
|
this.sourceMessageSenderNickname,
|
||||||
|
this.sessionType,
|
||||||
|
this.contentType,
|
||||||
|
this.content,
|
||||||
|
});
|
||||||
|
|
||||||
|
EditedInfo.fromJson(Map<String, dynamic> json) {
|
||||||
|
editerID = json['editerID'];
|
||||||
|
clientMsgID = json['clientMsgID'];
|
||||||
|
editTime = json['editTime'];
|
||||||
|
sourceMessageSendTime = json['sourceMessageSendTime'];
|
||||||
|
sourceMessageSendID = json['sourceMessageSendID'];
|
||||||
|
sourceMessageSenderNickname = json['sourceMessageSenderNickname'];
|
||||||
|
sessionType = json['sessionType'];
|
||||||
|
contentType = json['contentType'];
|
||||||
|
content = json['content'];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
data['editerID'] = this.editerID;
|
||||||
|
data['clientMsgID'] = this.clientMsgID;
|
||||||
|
data['editTime'] = this.editTime;
|
||||||
|
data['sourceMessageSendTime'] = this.sourceMessageSendTime;
|
||||||
|
data['sourceMessageSendID'] = this.sourceMessageSendID;
|
||||||
|
data['sourceMessageSenderNickname'] = this.sourceMessageSenderNickname;
|
||||||
|
data['sessionType'] = this.sessionType;
|
||||||
|
data['contentType'] = this.contentType;
|
||||||
|
data['content'] = this.content;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class AdvancedMessage {
|
class AdvancedMessage {
|
||||||
List<Message>? messageList;
|
List<Message>? messageList;
|
||||||
bool? isEnd;
|
bool? isEnd;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import '../../flutter_openim_sdk.dart';
|
import '../../flutter_openim_sdk.dart';
|
||||||
|
import 'channel_info.dart';
|
||||||
|
|
||||||
/// OA notification
|
/// OA notification
|
||||||
class OANotification {
|
class OANotification {
|
||||||
@@ -454,3 +455,254 @@ class GroupMemberInfoChangedNotification {
|
|||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
///todo 所有的聊天的操作者都没有,暂时没有处理
|
||||||
|
/// 聊天室事件通知
|
||||||
|
class ChannelNotification {
|
||||||
|
/// 聊天室信息
|
||||||
|
ChannelInfo? Channel;
|
||||||
|
|
||||||
|
/// 当前事件操作者信息
|
||||||
|
ChannelMembersInfo? opUser;
|
||||||
|
|
||||||
|
/// 聊天室拥有者信息
|
||||||
|
ChannelMembersInfo? ChannelOwnerUser;
|
||||||
|
|
||||||
|
/// 产生影响的聊天室成员列表
|
||||||
|
List<ChannelMembersInfo>? memberList;
|
||||||
|
|
||||||
|
ChannelNotification({
|
||||||
|
this.Channel,
|
||||||
|
this.opUser,
|
||||||
|
this.ChannelOwnerUser,
|
||||||
|
this.memberList,
|
||||||
|
});
|
||||||
|
|
||||||
|
ChannelNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
Channel = json['channel'] != null ? ChannelInfo.fromJson(json['channel']) : null;
|
||||||
|
opUser = json['opUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['opUser'])
|
||||||
|
: null;
|
||||||
|
ChannelOwnerUser = json['channelOwnerUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['channelOwnerUser'])
|
||||||
|
: null;
|
||||||
|
if (json['memberList'] != null) {
|
||||||
|
memberList = <ChannelMembersInfo>[];
|
||||||
|
json['memberList'].forEach((v) {
|
||||||
|
memberList!.add(ChannelMembersInfo.fromJson(v));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
if (this.Channel != null) {
|
||||||
|
data['channel'] = this.Channel!.toJson();
|
||||||
|
}
|
||||||
|
if (this.opUser != null) {
|
||||||
|
data['opUser'] = this.opUser!.toJson();
|
||||||
|
}
|
||||||
|
if (this.ChannelOwnerUser != null) {
|
||||||
|
data['channelOwnerUser'] = this.ChannelOwnerUser!.toJson();
|
||||||
|
}
|
||||||
|
if (this.memberList != null) {
|
||||||
|
data['memberList'] = this.memberList!.map((v) => v.toJson()).toList();
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// 组踢出成员通知
|
||||||
|
class KickedChannelMemeberNotification {
|
||||||
|
/// 聊天室信息
|
||||||
|
ChannelInfo? Channel;
|
||||||
|
|
||||||
|
/// 操作者信息
|
||||||
|
ChannelMembersInfo? opUser;
|
||||||
|
|
||||||
|
/// 被踢出聊天室的成员信息列表
|
||||||
|
List<ChannelMembersInfo>? kickedUserList;
|
||||||
|
|
||||||
|
KickedChannelMemeberNotification(
|
||||||
|
{this.Channel, this.opUser, this.kickedUserList});
|
||||||
|
|
||||||
|
KickedChannelMemeberNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
Channel = json['channel'] != null ? ChannelInfo.fromJson(json['channel']) : null;
|
||||||
|
opUser = json['opUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['opUser'])
|
||||||
|
: null;
|
||||||
|
if (json['kickedUserList'] != null) {
|
||||||
|
kickedUserList = <ChannelMembersInfo>[];
|
||||||
|
json['kickedUserList'].forEach((v) {
|
||||||
|
kickedUserList!.add(ChannelMembersInfo.fromJson(v));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
if (this.Channel != null) {
|
||||||
|
data['channel'] = this.Channel!.toJson();
|
||||||
|
}
|
||||||
|
if (this.opUser != null) {
|
||||||
|
data['opUser'] = this.opUser!.toJson();
|
||||||
|
}
|
||||||
|
if (this.kickedUserList != null) {
|
||||||
|
data['kickedUserList'] =
|
||||||
|
this.kickedUserList!.map((v) => v.toJson()).toList();
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 退出聊天室通知
|
||||||
|
class QuitChannelNotification {
|
||||||
|
/// 聊天室信息
|
||||||
|
ChannelInfo? Channel;
|
||||||
|
|
||||||
|
/// 退聊天室的成员信息
|
||||||
|
ChannelMembersInfo? quitUser;
|
||||||
|
|
||||||
|
QuitChannelNotification({this.Channel, this.quitUser});
|
||||||
|
|
||||||
|
QuitChannelNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
Channel = json['channel'] != null ? ChannelInfo.fromJson(json['channel']) : null;
|
||||||
|
quitUser = json['quitUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['quitUser'])
|
||||||
|
: null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
if (this.Channel != null) {
|
||||||
|
data['channel'] = this.Channel!.toJson();
|
||||||
|
}
|
||||||
|
if (this.quitUser != null) {
|
||||||
|
data['quitUser'] = this.quitUser!.toJson();
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 进聊天室通知
|
||||||
|
class EnterChannelNotification {
|
||||||
|
/// 聊天室信息
|
||||||
|
ChannelInfo? Channel;
|
||||||
|
|
||||||
|
/// 进入聊天室的成员信息
|
||||||
|
ChannelMembersInfo? entrantUser;
|
||||||
|
|
||||||
|
EnterChannelNotification({this.Channel, this.entrantUser});
|
||||||
|
|
||||||
|
EnterChannelNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
Channel = json['channel'] != null ? ChannelInfo.fromJson(json['channel']) : null;
|
||||||
|
entrantUser = json['entrantUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['entrantUser'])
|
||||||
|
: null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
if (this.Channel != null) {
|
||||||
|
data['channel'] = this.Channel!.toJson();
|
||||||
|
}
|
||||||
|
if (this.entrantUser != null) {
|
||||||
|
data['quitUser'] = this.entrantUser!.toJson();
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// 禁言成员通知
|
||||||
|
class MuteChannelMemberNotification {
|
||||||
|
/// 聊天室信息
|
||||||
|
ChannelInfo? Channel;
|
||||||
|
|
||||||
|
/// 操作者信息
|
||||||
|
ChannelMembersInfo? opUser;
|
||||||
|
|
||||||
|
/// 被禁言的成员信息
|
||||||
|
ChannelMembersInfo? mutedUser;
|
||||||
|
|
||||||
|
/// 禁言时间s
|
||||||
|
int? mutedSeconds;
|
||||||
|
|
||||||
|
MuteChannelMemberNotification({
|
||||||
|
this.Channel,
|
||||||
|
this.opUser,
|
||||||
|
this.mutedUser,
|
||||||
|
this.mutedSeconds,
|
||||||
|
});
|
||||||
|
|
||||||
|
MuteChannelMemberNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
Channel = json['channel'] != null ? ChannelInfo.fromJson(json['channel']) : null;
|
||||||
|
opUser = json['opUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['opUser'])
|
||||||
|
: null;
|
||||||
|
mutedUser = json['mutedUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['mutedUser'])
|
||||||
|
: null;
|
||||||
|
mutedSeconds = json['mutedSeconds'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
if (this.Channel != null) {
|
||||||
|
data['channel'] = this.Channel!.toJson();
|
||||||
|
}
|
||||||
|
if (this.opUser != null) {
|
||||||
|
data['opUser'] = this.opUser!.toJson();
|
||||||
|
}
|
||||||
|
if (this.mutedUser != null) {
|
||||||
|
data['mutedUser'] = this.mutedUser!.toJson();
|
||||||
|
}
|
||||||
|
data['mutedSeconds'] = this.mutedSeconds;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 聊天室成员信息发送变化通知
|
||||||
|
class ChannelMemberInfoChangedNotification {
|
||||||
|
/// 聊天室信息
|
||||||
|
ChannelInfo? Channel;
|
||||||
|
|
||||||
|
/// 操作者信息
|
||||||
|
ChannelMembersInfo? opUser;
|
||||||
|
|
||||||
|
/// 资料发生改变的成员
|
||||||
|
ChannelMembersInfo? changedUser;
|
||||||
|
|
||||||
|
ChannelMemberInfoChangedNotification({
|
||||||
|
this.Channel,
|
||||||
|
this.opUser,
|
||||||
|
this.changedUser,
|
||||||
|
});
|
||||||
|
|
||||||
|
ChannelMemberInfoChangedNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
Channel = json['channel'] != null ? ChannelInfo.fromJson(json['channel']) : null;
|
||||||
|
opUser = json['opUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['opUser'])
|
||||||
|
: null;
|
||||||
|
changedUser = json['changedUser'] != null
|
||||||
|
? ChannelMembersInfo.fromJson(json['changedUser'])
|
||||||
|
: null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
if (this.Channel != null) {
|
||||||
|
data['Channel'] = this.Channel!.toJson();
|
||||||
|
}
|
||||||
|
if (this.opUser != null) {
|
||||||
|
data['opUser'] = this.opUser!.toJson();
|
||||||
|
}
|
||||||
|
if (this.changedUser != null) {
|
||||||
|
data['changedUser'] = this.changedUser!.toJson();
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
41
lib/src/models/set_channel_member_info.dart
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
class SetChannelMemberInfo {
|
||||||
|
SetChannelMemberInfo({
|
||||||
|
required this.channelID,
|
||||||
|
required this.userID,
|
||||||
|
this.roleLevel,
|
||||||
|
this.nickname,
|
||||||
|
this.faceURL,
|
||||||
|
this.ex,
|
||||||
|
});
|
||||||
|
|
||||||
|
final String channelID;
|
||||||
|
final String userID;
|
||||||
|
final int? roleLevel;
|
||||||
|
final String? nickname;
|
||||||
|
final String? faceURL;
|
||||||
|
final String? ex;
|
||||||
|
|
||||||
|
SetChannelMemberInfo.fromJson(Map<String, dynamic> json)
|
||||||
|
: channelID = json['channelID'],
|
||||||
|
userID = json['userID'],
|
||||||
|
roleLevel = json['roleLevel'],
|
||||||
|
nickname = json['nickname'],
|
||||||
|
faceURL = json['faceURL'],
|
||||||
|
ex = json['ex'];
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final data = Map<String, dynamic>();
|
||||||
|
data['channelID'] = channelID;
|
||||||
|
data['userID'] = userID;
|
||||||
|
data['roleLevel'] = roleLevel;
|
||||||
|
data['nickname'] = nickname;
|
||||||
|
data['faceURL'] = faceURL;
|
||||||
|
data['ex'] = ex;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
String toString() {
|
||||||
|
return 'SetChannelMemberInfo{channelID: $channelID, userID: $userID, roleLevel: $roleLevel, nickname: $nickname, faceURL: $faceURL, ex: $ex}';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -47,6 +47,8 @@ class ConversationReq {
|
|||||||
final bool? isMsgDestruct;
|
final bool? isMsgDestruct;
|
||||||
final int? msgDestructTime;
|
final int? msgDestructTime;
|
||||||
final int? groupAtType;
|
final int? groupAtType;
|
||||||
|
final String? channelID;
|
||||||
|
final int? channelAtType;
|
||||||
|
|
||||||
ConversationReq({
|
ConversationReq({
|
||||||
this.userID,
|
this.userID,
|
||||||
@@ -59,6 +61,8 @@ class ConversationReq {
|
|||||||
this.isMsgDestruct,
|
this.isMsgDestruct,
|
||||||
this.msgDestructTime,
|
this.msgDestructTime,
|
||||||
this.groupAtType,
|
this.groupAtType,
|
||||||
|
this.channelID,
|
||||||
|
this.channelAtType,
|
||||||
});
|
});
|
||||||
|
|
||||||
ConversationReq.fromJson(Map<String, dynamic> json)
|
ConversationReq.fromJson(Map<String, dynamic> json)
|
||||||
@@ -71,8 +75,11 @@ class ConversationReq {
|
|||||||
burnDuration = json['burnDuration'],
|
burnDuration = json['burnDuration'],
|
||||||
isMsgDestruct = json['isMsgDestruct'],
|
isMsgDestruct = json['isMsgDestruct'],
|
||||||
msgDestructTime = json['msgDestructTime'],
|
msgDestructTime = json['msgDestructTime'],
|
||||||
|
channelID=json['channelID'],
|
||||||
|
channelAtType = json['channelAtType'],
|
||||||
groupAtType = json['groupAtType'];
|
groupAtType = json['groupAtType'];
|
||||||
|
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
Map<String, dynamic> toJson() {
|
||||||
final data = <String, dynamic>{};
|
final data = <String, dynamic>{};
|
||||||
data['userID'] = userID;
|
data['userID'] = userID;
|
||||||
@@ -85,7 +92,8 @@ class ConversationReq {
|
|||||||
data['isMsgDestruct'] = isMsgDestruct;
|
data['isMsgDestruct'] = isMsgDestruct;
|
||||||
data['msgDestructTime'] = msgDestructTime;
|
data['msgDestructTime'] = msgDestructTime;
|
||||||
data['groupAtType'] = groupAtType;
|
data['groupAtType'] = groupAtType;
|
||||||
|
data['channelID'] = channelID;
|
||||||
|
data['channelAtType'] = channelAtType;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import 'package:flutter/services.dart';
|
|||||||
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
||||||
|
|
||||||
class OpenIM {
|
class OpenIM {
|
||||||
static const version = '3.8.1';
|
static const version = '3.8.3+2';
|
||||||
|
|
||||||
static const _channel = MethodChannel('flutter_openim_sdk');
|
static const _channel = MethodChannel('flutter_openim_sdk');
|
||||||
|
|
||||||
|
|||||||
24
pubspec.lock
@@ -63,18 +63,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker
|
name: leak_tracker
|
||||||
sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a"
|
sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "10.0.4"
|
version: "10.0.5"
|
||||||
leak_tracker_flutter_testing:
|
leak_tracker_flutter_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker_flutter_testing
|
name: leak_tracker_flutter_testing
|
||||||
sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
|
sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.3"
|
version: "3.0.5"
|
||||||
leak_tracker_testing:
|
leak_tracker_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -95,18 +95,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: material_color_utilities
|
name: material_color_utilities
|
||||||
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
|
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.0"
|
version: "0.11.1"
|
||||||
meta:
|
meta:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: meta
|
name: meta
|
||||||
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
|
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.12.0"
|
version: "1.15.0"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -164,10 +164,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_api
|
name: test_api
|
||||||
sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f"
|
sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.0"
|
version: "0.7.2"
|
||||||
vector_math:
|
vector_math:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -180,10 +180,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
|
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.1"
|
version: "14.2.5"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.3.0 <4.0.0"
|
dart: ">=3.3.0 <4.0.0"
|
||||||
flutter: ">=3.18.0-18.0.pre.54"
|
flutter: ">=3.18.0-18.0.pre.54"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: flutter_openim_sdk
|
name: flutter_openim_sdk
|
||||||
description: An instant messaging plug-in that supports Android and IOS. And the server is also all open source.
|
description: An instant messaging plug-in that supports Android and IOS. And the server is also all open source.
|
||||||
version: 3.8.1
|
version: 3.8.3+2
|
||||||
homepage: https://www.openim.io
|
homepage: https://www.openim.io
|
||||||
repository: https://github.com/openimsdk/open-im-sdk-flutter
|
repository: https://github.com/openimsdk/open-im-sdk-flutter
|
||||||
|
|
||||||
|
|||||||