Skip to content

Commit

Permalink
rtm 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vince-hz committed Sep 12, 2024
1 parent 328cc70 commit 9d33e6a
Show file tree
Hide file tree
Showing 31 changed files with 74 additions and 34 deletions.
26 changes: 13 additions & 13 deletions Flat/Vendor/rtm_v2.2.0/libs/AgoraRtmKit.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,55 +6,53 @@
<array>
<dict>
<key>BinaryPath</key>
<string>AgoraRtmKit.framework/AgoraRtmKit</string>
<string>AgoraRtmKit.framework/Versions/A/AgoraRtmKit</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>AgoraRtmKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>macos</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>AgoraRtmKit.framework/AgoraRtmKit</string>
<key>LibraryIdentifier</key>
<string>xros-arm64_x86_64-simulator</string>
<string>xros-arm64</string>
<key>LibraryPath</key>
<string>AgoraRtmKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>xros</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>AgoraRtmKit.framework/AgoraRtmKit</string>
<key>LibraryIdentifier</key>
<string>xros-arm64</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>AgoraRtmKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>xros</string>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>AgoraRtmKit.framework/Versions/A/AgoraRtmKit</string>
<string>AgoraRtmKit.framework/AgoraRtmKit</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>xros-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>AgoraRtmKit.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -63,7 +61,9 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>xros</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,10 @@ enum RTM_PROXY_TYPE {
* 1: Link with http proxy
*/
RTM_PROXY_TYPE_HTTP = 1,
/**
* 2: Link with tcp cloud proxy
*/
RTM_PROXY_TYPE_CLOUD_TCP = 2,
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresence : NSObject
*/
-(void) setState:(NSString * _Nonnull)channelName
channelType:(AgoraRtmChannelType)channelType
items:(NSDictionary * _Nonnull)items
items:(NSDictionary<NSString *, NSString *> *_Nonnull)items
completion:(AgoraRtmOperationBlock _Nullable)completionBlock NS_SWIFT_NAME(setState(channelName:channelType:items:completion:));

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ typedef NS_ENUM(NSInteger, AgoraRtmProxyType) {
* 1: Link with http proxy
*/
AgoraRtmProxyTypeHttp = 1,
/**
* 2: Link with tcp cloud proxy
*/
AgoraRtmProxyTypeCloudTcp = 2,
};

typedef NS_OPTIONS(NSInteger, AgoraRtmServiceType) {
Expand Down Expand Up @@ -1043,4 +1047,4 @@ typedef NS_ENUM (NSInteger, AgoraRtmLogLevel) {
* Output log files of the Critical level.
*/
AgoraRtmLogLevelFatal = 0x0008,
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmUserState: NSObject
/**
* The user states.
*/
@property (nonatomic, copy, nonnull) NSDictionary * states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;
@end

__attribute__((visibility("default"))) @interface AgoraRtmChannelInfo: NSObject
Expand Down Expand Up @@ -529,7 +529,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresenceEvent: NSObjec
/**
* The user states
*/
@property (nonatomic, copy, nonnull) NSDictionary *states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;

/**
* Only valid when in interval mode
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,10 @@ enum RTM_PROXY_TYPE {
* 1: Link with http proxy
*/
RTM_PROXY_TYPE_HTTP = 1,
/**
* 2: Link with tcp cloud proxy
*/
RTM_PROXY_TYPE_CLOUD_TCP = 2,
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresence : NSObject
*/
-(void) setState:(NSString * _Nonnull)channelName
channelType:(AgoraRtmChannelType)channelType
items:(NSDictionary * _Nonnull)items
items:(NSDictionary<NSString *, NSString *> *_Nonnull)items
completion:(AgoraRtmOperationBlock _Nullable)completionBlock NS_SWIFT_NAME(setState(channelName:channelType:items:completion:));

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ typedef NS_ENUM(NSInteger, AgoraRtmProxyType) {
* 1: Link with http proxy
*/
AgoraRtmProxyTypeHttp = 1,
/**
* 2: Link with tcp cloud proxy
*/
AgoraRtmProxyTypeCloudTcp = 2,
};

typedef NS_OPTIONS(NSInteger, AgoraRtmServiceType) {
Expand Down Expand Up @@ -1043,4 +1047,4 @@ typedef NS_ENUM (NSInteger, AgoraRtmLogLevel) {
* Output log files of the Critical level.
*/
AgoraRtmLogLevelFatal = 0x0008,
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmUserState: NSObject
/**
* The user states.
*/
@property (nonatomic, copy, nonnull) NSDictionary * states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;
@end

__attribute__((visibility("default"))) @interface AgoraRtmChannelInfo: NSObject
Expand Down Expand Up @@ -529,7 +529,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresenceEvent: NSObjec
/**
* The user states
*/
@property (nonatomic, copy, nonnull) NSDictionary *states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;

/**
* Only valid when in interval mode
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,10 @@ enum RTM_PROXY_TYPE {
* 1: Link with http proxy
*/
RTM_PROXY_TYPE_HTTP = 1,
/**
* 2: Link with tcp cloud proxy
*/
RTM_PROXY_TYPE_CLOUD_TCP = 2,
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresence : NSObject
*/
-(void) setState:(NSString * _Nonnull)channelName
channelType:(AgoraRtmChannelType)channelType
items:(NSDictionary * _Nonnull)items
items:(NSDictionary<NSString *, NSString *> *_Nonnull)items
completion:(AgoraRtmOperationBlock _Nullable)completionBlock NS_SWIFT_NAME(setState(channelName:channelType:items:completion:));

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ typedef NS_ENUM(NSInteger, AgoraRtmProxyType) {
* 1: Link with http proxy
*/
AgoraRtmProxyTypeHttp = 1,
/**
* 2: Link with tcp cloud proxy
*/
AgoraRtmProxyTypeCloudTcp = 2,
};

typedef NS_OPTIONS(NSInteger, AgoraRtmServiceType) {
Expand Down Expand Up @@ -1043,4 +1047,4 @@ typedef NS_ENUM (NSInteger, AgoraRtmLogLevel) {
* Output log files of the Critical level.
*/
AgoraRtmLogLevelFatal = 0x0008,
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmUserState: NSObject
/**
* The user states.
*/
@property (nonatomic, copy, nonnull) NSDictionary * states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;
@end

__attribute__((visibility("default"))) @interface AgoraRtmChannelInfo: NSObject
Expand Down Expand Up @@ -529,7 +529,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresenceEvent: NSObjec
/**
* The user states
*/
@property (nonatomic, copy, nonnull) NSDictionary *states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;

/**
* Only valid when in interval mode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.2.0</string>
<string>2.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,10 @@ enum RTM_PROXY_TYPE {
* 1: Link with http proxy
*/
RTM_PROXY_TYPE_HTTP = 1,
/**
* 2: Link with tcp cloud proxy
*/
RTM_PROXY_TYPE_CLOUD_TCP = 2,
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresence : NSObject
*/
-(void) setState:(NSString * _Nonnull)channelName
channelType:(AgoraRtmChannelType)channelType
items:(NSDictionary * _Nonnull)items
items:(NSDictionary<NSString *, NSString *> *_Nonnull)items
completion:(AgoraRtmOperationBlock _Nullable)completionBlock NS_SWIFT_NAME(setState(channelName:channelType:items:completion:));

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ typedef NS_ENUM(NSInteger, AgoraRtmProxyType) {
* 1: Link with http proxy
*/
AgoraRtmProxyTypeHttp = 1,
/**
* 2: Link with tcp cloud proxy
*/
AgoraRtmProxyTypeCloudTcp = 2,
};

typedef NS_OPTIONS(NSInteger, AgoraRtmServiceType) {
Expand Down Expand Up @@ -1043,4 +1047,4 @@ typedef NS_ENUM (NSInteger, AgoraRtmLogLevel) {
* Output log files of the Critical level.
*/
AgoraRtmLogLevelFatal = 0x0008,
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmUserState: NSObject
/**
* The user states.
*/
@property (nonatomic, copy, nonnull) NSDictionary * states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;
@end

__attribute__((visibility("default"))) @interface AgoraRtmChannelInfo: NSObject
Expand Down Expand Up @@ -529,7 +529,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresenceEvent: NSObjec
/**
* The user states
*/
@property (nonatomic, copy, nonnull) NSDictionary *states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;

/**
* Only valid when in interval mode
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,10 @@ enum RTM_PROXY_TYPE {
* 1: Link with http proxy
*/
RTM_PROXY_TYPE_HTTP = 1,
/**
* 2: Link with tcp cloud proxy
*/
RTM_PROXY_TYPE_CLOUD_TCP = 2,
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresence : NSObject
*/
-(void) setState:(NSString * _Nonnull)channelName
channelType:(AgoraRtmChannelType)channelType
items:(NSDictionary * _Nonnull)items
items:(NSDictionary<NSString *, NSString *> *_Nonnull)items
completion:(AgoraRtmOperationBlock _Nullable)completionBlock NS_SWIFT_NAME(setState(channelName:channelType:items:completion:));

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ typedef NS_ENUM(NSInteger, AgoraRtmProxyType) {
* 1: Link with http proxy
*/
AgoraRtmProxyTypeHttp = 1,
/**
* 2: Link with tcp cloud proxy
*/
AgoraRtmProxyTypeCloudTcp = 2,
};

typedef NS_OPTIONS(NSInteger, AgoraRtmServiceType) {
Expand Down Expand Up @@ -1043,4 +1047,4 @@ typedef NS_ENUM (NSInteger, AgoraRtmLogLevel) {
* Output log files of the Critical level.
*/
AgoraRtmLogLevelFatal = 0x0008,
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmUserState: NSObject
/**
* The user states.
*/
@property (nonatomic, copy, nonnull) NSDictionary * states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;
@end

__attribute__((visibility("default"))) @interface AgoraRtmChannelInfo: NSObject
Expand Down Expand Up @@ -529,7 +529,7 @@ __attribute__((visibility("default"))) @interface AgoraRtmPresenceEvent: NSObjec
/**
* The user states
*/
@property (nonatomic, copy, nonnull) NSDictionary *states;
@property (nonatomic, copy, nonnull) NSDictionary<NSString *, NSString *> * states;

/**
* Only valid when in interval mode
Expand Down
Binary file not shown.

0 comments on commit 9d33e6a

Please sign in to comment.