no message
This commit is contained in:
parent
7936178668
commit
aa2fa307e0
@ -8,7 +8,7 @@
|
||||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'openim_sdk_core_ios'
|
||||
s.version = '0.5.0'
|
||||
s.version = '0.6.0'
|
||||
s.summary = 'A short description of openim_sdk_core_ios.'
|
||||
|
||||
# This description is used to generate tags and improve search results.
|
||||
|
@ -4,6 +4,20 @@
|
||||
<dict>
|
||||
<key>AvailableLibraries</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>OpenIMCore.framework/OpenIMCore</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>OpenIMCore.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>OpenIMCore.framework/OpenIMCore</string>
|
||||
@ -21,20 +35,6 @@
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>simulator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>OpenIMCore.framework/OpenIMCore</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>OpenIMCore.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>XFWK</string>
|
||||
|
@ -195,6 +195,8 @@ FOUNDATION_EXPORT void Open_im_sdkDeleteUserCommand(id<Open_im_sdk_callbackBase>
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkDismissGroup(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable groupID);
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkEditMessage(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable conversationID, NSString* _Nullable clientMsgID, NSString* _Nullable message);
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkFetchSurroundingMessages(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable message, long before, long after);
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkFindMessageList(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable findMessageOptions);
|
||||
|
@ -53,6 +53,7 @@
|
||||
|
||||
@protocol Open_im_sdk_callbackOnAdvancedMsgListener <NSObject>
|
||||
- (void)onMsgDeleted:(NSString* _Nullable)message;
|
||||
- (void)onNewRecvMessageEdited:(NSString* _Nullable)messageEdited;
|
||||
- (void)onNewRecvMessageRevoked:(NSString* _Nullable)messageRevoked;
|
||||
- (void)onRecvC2CReadReceipt:(NSString* _Nullable)msgReceiptList;
|
||||
- (void)onRecvNewMessage:(NSString* _Nullable)message;
|
||||
@ -289,6 +290,7 @@
|
||||
|
||||
- (nonnull instancetype)initWithRef:(_Nonnull id)ref;
|
||||
- (void)onMsgDeleted:(NSString* _Nullable)message;
|
||||
- (void)onNewRecvMessageEdited:(NSString* _Nullable)messageEdited;
|
||||
- (void)onNewRecvMessageRevoked:(NSString* _Nullable)messageRevoked;
|
||||
- (void)onRecvC2CReadReceipt:(NSString* _Nullable)msgReceiptList;
|
||||
- (void)onRecvNewMessage:(NSString* _Nullable)message;
|
||||
|
@ -9,9 +9,9 @@
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>100.0</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.0.1734935955</string>
|
||||
<string>0.0.1740723566</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>0.0.1734935955</string>
|
||||
<string>0.0.1740723566</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
</dict>
|
||||
|
Binary file not shown.
@ -195,6 +195,8 @@ FOUNDATION_EXPORT void Open_im_sdkDeleteUserCommand(id<Open_im_sdk_callbackBase>
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkDismissGroup(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable groupID);
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkEditMessage(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable conversationID, NSString* _Nullable clientMsgID, NSString* _Nullable message);
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkFetchSurroundingMessages(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable message, long before, long after);
|
||||
|
||||
FOUNDATION_EXPORT void Open_im_sdkFindMessageList(id<Open_im_sdk_callbackBase> _Nullable callback, NSString* _Nullable operationID, NSString* _Nullable findMessageOptions);
|
||||
|
@ -53,6 +53,7 @@
|
||||
|
||||
@protocol Open_im_sdk_callbackOnAdvancedMsgListener <NSObject>
|
||||
- (void)onMsgDeleted:(NSString* _Nullable)message;
|
||||
- (void)onNewRecvMessageEdited:(NSString* _Nullable)messageEdited;
|
||||
- (void)onNewRecvMessageRevoked:(NSString* _Nullable)messageRevoked;
|
||||
- (void)onRecvC2CReadReceipt:(NSString* _Nullable)msgReceiptList;
|
||||
- (void)onRecvNewMessage:(NSString* _Nullable)message;
|
||||
@ -289,6 +290,7 @@
|
||||
|
||||
- (nonnull instancetype)initWithRef:(_Nonnull id)ref;
|
||||
- (void)onMsgDeleted:(NSString* _Nullable)message;
|
||||
- (void)onNewRecvMessageEdited:(NSString* _Nullable)messageEdited;
|
||||
- (void)onNewRecvMessageRevoked:(NSString* _Nullable)messageRevoked;
|
||||
- (void)onRecvC2CReadReceipt:(NSString* _Nullable)msgReceiptList;
|
||||
- (void)onRecvNewMessage:(NSString* _Nullable)message;
|
||||
|
@ -9,9 +9,9 @@
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>100.0</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.0.1734935955</string>
|
||||
<string>0.0.1740723566</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>0.0.1734935955</string>
|
||||
<string>0.0.1740723566</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
</dict>
|
||||
|
Loading…
x
Reference in New Issue
Block a user