Skip to content
This repository has been archived by the owner on Oct 9, 2021. It is now read-only.

Commit

Permalink
Release SealTalk Demo version 1.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
RongRobot committed Jan 10, 2017
1 parent aa0c630 commit 3a57c67
Show file tree
Hide file tree
Showing 158 changed files with 1,267 additions and 333 deletions.
17 changes: 3 additions & 14 deletions ios-rongimdemo/RCDContactSelectedTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -285,24 +285,13 @@ - (void)clickedDone:(id)sender {
[self.navigationController pushViewController:chat animated:YES];
});
} else {
NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
// get seleted users
NSMutableArray *seletedUsers = [NSMutableArray new];
NSMutableArray *seletedUsersId = [NSMutableArray new];
for (NSIndexPath *indexPath in indexPaths) {
NSString *key = [self.allKeys objectAtIndex:indexPath.section];
NSArray *arrayForKey = [self.allFriends objectForKey:key];
RCDUserInfo *user = arrayForKey[indexPath.row];
//转成RCDUserInfo
RCUserInfo *userInfo = [RCUserInfo new];
userInfo.userId = user.userId;
userInfo.name = user.name;
userInfo.portraitUri = user.portraitUri;
[[RCIM sharedRCIM] refreshUserInfoCache:userInfo
withUserId:userInfo.userId];
for (RCUserInfo *user in self.collectionViewResource) {
[seletedUsersId addObject:user.userId];
[seletedUsers addObject:userInfo];
}
seletedUsers = [self.collectionViewResource mutableCopy];
if (_selectUserList) {
NSArray<RCUserInfo *> *userList = [NSArray arrayWithArray:seletedUsers];
_selectUserList(userList);
Expand Down Expand Up @@ -927,7 +916,7 @@ - (void)searchBar:(UISearchBar *)searchBar
}

- (BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar {
if ([self.searchField.text isEqualToString:@"搜索"]) {
if ([self.searchField.text isEqualToString:@"搜索"] || [self.searchField.text isEqualToString:@"Search"]) {
self.searchField.leftView = nil;
self.searchField.text = @"";
}
Expand Down
7 changes: 3 additions & 4 deletions ios-rongimdemo/RCDCreateGroupViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ - (void)imagePickerController:(UIImagePickerController *)picker
UIImage *originImage =
[info objectForKey:UIImagePickerControllerOriginalImage];
CGRect captureRect = [[info objectForKey:UIImagePickerControllerCropRect] CGRectValue];
UIImage *captureImage = [self getSubImage:originImage Rect:captureRect];
UIImage *captureImage = [self getSubImage:originImage Rect:captureRect imageOrientation:originImage.imageOrientation];

UIImage *scaleImage = [self scaleImage:captureImage toScale:0.8];
data = UIImageJPEGRepresentation(scaleImage, 0.00001);
Expand All @@ -450,17 +450,16 @@ - (void)imagePickerController:(UIImagePickerController *)picker
});
}

-(UIImage*)getSubImage:(UIImage *)originImage Rect:(CGRect)rect
-(UIImage*)getSubImage:(UIImage *)originImage Rect:(CGRect)rect imageOrientation:(UIImageOrientation)imageOrientation
{
CGImageRef subImageRef = CGImageCreateWithImageInRect(originImage.CGImage, rect);
CGRect smallBounds = CGRectMake(0, 0, CGImageGetWidth(subImageRef), CGImageGetHeight(subImageRef));

UIGraphicsBeginImageContext(smallBounds.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextDrawImage(context, smallBounds, subImageRef);
UIImage* smallImage = [UIImage imageWithCGImage:subImageRef];
UIImage* smallImage = [UIImage imageWithCGImage:subImageRef scale:1.f orientation:imageOrientation];
UIGraphicsEndImageContext();

return smallImage;
}

Expand Down
12 changes: 6 additions & 6 deletions ios-rongimdemo/RCDGroupSettingsTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ - (void)imagePickerController:(UIImagePickerController *)picker
UIImage *originImage =
[info objectForKey:UIImagePickerControllerOriginalImage];
CGRect captureRect = [[info objectForKey:UIImagePickerControllerCropRect] CGRectValue];
UIImage *captureImage = [self getSubImage:originImage Rect:captureRect];
UIImage *captureImage = [self getSubImage:originImage Rect:captureRect imageOrientation:originImage.imageOrientation];

UIImage *scaleImage = [self scaleImage:captureImage toScale:0.8];
data = UIImageJPEGRepresentation(scaleImage, 0.00001);
Expand Down Expand Up @@ -465,17 +465,16 @@ - (void)imagePickerController:(UIImagePickerController *)picker
});
}

-(UIImage*)getSubImage:(UIImage *)originImage Rect:(CGRect)rect
-(UIImage*)getSubImage:(UIImage *)originImage Rect:(CGRect)rect imageOrientation:(UIImageOrientation)imageOrientation
{
CGImageRef subImageRef = CGImageCreateWithImageInRect(originImage.CGImage, rect);
CGRect smallBounds = CGRectMake(0, 0, CGImageGetWidth(subImageRef), CGImageGetHeight(subImageRef));

UIGraphicsBeginImageContext(smallBounds.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextDrawImage(context, smallBounds, subImageRef);
UIImage* smallImage = [UIImage imageWithCGImage:subImageRef];
UIImage* smallImage = [UIImage imageWithCGImage:subImageRef scale:1.f orientation:imageOrientation];
UIGraphicsEndImageContext();

return smallImage;
}

Expand Down Expand Up @@ -894,7 +893,8 @@ - (void)collectionView:(UICollectionView *)collectionView
contactSelectedVC.groupId = _Group.groupId;
contactSelectedVC.isAllowsMultipleSelection = YES;
NSMutableArray *membersId = [NSMutableArray new];
for (id user in collectionViewResource) {
NSMutableArray *groupMemberList = [[RCDataBaseManager shareInstance] getGroupMember:_Group.groupId];
for (id user in groupMemberList) {
if ([user isKindOfClass:[RCUserInfo class]]) {
NSString *userId = ((RCUserInfo*)user).userId;
[membersId addObject:userId];
Expand All @@ -917,7 +917,7 @@ - (void)collectionView:(UICollectionView *)collectionView
}
contactSelectedVC.titleStr = @"移除成员";
NSMutableArray *members = [NSMutableArray new];
for (id user in collectionViewResource) {
for (id user in groupMemberList) {
if ([user isKindOfClass:[RCUserInfo class]]) {
if (![((RCUserInfo *)user).userId isEqualToString:creatorId]) {
[members addObject:user];
Expand Down
7 changes: 6 additions & 1 deletion ios-rongimdemo/RCDSearchHistoryMessageController.m
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,12 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
[[RCDChatViewController alloc] init];
_conversationVC.conversationType = model.conversationType;
_conversationVC.targetId = model.targetId;
_conversationVC.userName = model.name;
if (model.conversationType == ConversationType_GROUP) {
RCDGroupInfo *groupInfo = [[RCDataBaseManager shareInstance] getGroupByGroupId:model.targetId];
_conversationVC.title = groupInfo.groupName;
}else {
_conversationVC.title = model.name;
}
int unreadCount = [[RCIMClient sharedRCIMClient] getUnreadCount:model.conversationType targetId:model.targetId];
_conversationVC.unReadMessage = unreadCount;
_conversationVC.enableNewComingMessageIcon = YES; //开启消息提醒
Expand Down
4 changes: 2 additions & 2 deletions ios-rongimdemo/RCDSettingServerUrlViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -605,10 +605,10 @@ - (IBAction)btnDoneClicked:(id)sender {
if (![self checkContent])
return;

RCNetworkStatus stauts =
RCNetworkStatus status =
[[RCIMClient sharedRCIMClient] getCurrentNetworkStatus];

if (RC_NotReachable == stauts) {
if (RC_NotReachable == status) {
_errorMsgLb.text = @"当前网络不可用,请检查!";
}
NSString *appKeyString = [(UITextField *)[self.view viewWithTag:appKeyTextFieldTag] text];
Expand Down
79 changes: 59 additions & 20 deletions ios-rongimdemo/RCloudMessage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,16 @@
27C42EED1DE30637003E2306 /* RongCloudiFly.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27C42EEB1DE30637003E2306 /* RongCloudiFly.bundle */; };
27D6FF9C1DFE4D2100053F69 /* RCDSettingServerUrlViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D6FF9B1DFE4D2100053F69 /* RCDSettingServerUrlViewController.m */; };
27D6FF9F1DFE4D2C00053F69 /* RCDSettingUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D6FF9E1DFE4D2C00053F69 /* RCDSettingUserDefaults.m */; };
2E29FF351DC1BE7300AF2DF0 /* JrmfInfo.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2E29FF2F1DC1BE7300AF2DF0 /* JrmfInfo.strings */; };
2E29FF361DC1BE7300AF2DF0 /* JResource.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2E29FF311DC1BE7300AF2DF0 /* JResource.bundle */; };
2E29FF371DC1BE7300AF2DF0 /* JrmfPacketKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E29FF321DC1BE7300AF2DF0 /* JrmfPacketKit.framework */; };
2E29FF381DC1BE7300AF2DF0 /* JYangToolKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E29FF331DC1BE7300AF2DF0 /* JYangToolKit.framework */; };
2E29FF3C1DC1BE8400AF2DF0 /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2E29FF3A1DC1BE8400AF2DF0 /* AlipaySDK.bundle */; };
2E29FF3D1DC1BE8400AF2DF0 /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E29FF3B1DC1BE8400AF2DF0 /* AlipaySDK.framework */; };
2E6B9A1A1E127BF7006EA6B4 /* JrmfInfo.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2E6B9A181E127BF7006EA6B4 /* JrmfInfo.strings */; };
2E6B9A1E1E127C0C006EA6B4 /* JrmfInfo.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2E6B9A1C1E127C0C006EA6B4 /* JrmfInfo.strings */; };
2E7A36E11E03A876005231BE /* JResource.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2E7A36DB1E03A876005231BE /* JResource.bundle */; };
2E7A36E21E03A876005231BE /* jrmf.cer in Resources */ = {isa = PBXBuildFile; fileRef = 2E7A36DC1E03A876005231BE /* jrmf.cer */; };
2E7A36E31E03A876005231BE /* JrmfPacketKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E7A36DD1E03A876005231BE /* JrmfPacketKit.framework */; };
2E7A36E41E03A876005231BE /* JrmfWalletKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E7A36DE1E03A876005231BE /* JrmfWalletKit.framework */; };
2E7A36E51E03A876005231BE /* JYangToolKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E7A36DF1E03A876005231BE /* JYangToolKit.framework */; };
2E7A36E61E03A876005231BE /* WalletResource.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2E7A36E01E03A876005231BE /* WalletResource.bundle */; };
466684241B5DEA10000B7504 /* RCDSettingBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 466684231B5DEA10000B7504 /* RCDSettingBaseViewController.m */; };
466684271B5DEA5B000B7504 /* RCDConversationSettingBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 466684261B5DEA5B000B7504 /* RCDConversationSettingBaseViewController.m */; };
4666842A1B5DEC04000B7504 /* RCDConversationSettingClearMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 466684291B5DEC04000B7504 /* RCDConversationSettingClearMessageCell.m */; };
Expand Down Expand Up @@ -375,13 +379,16 @@
27D6FF9B1DFE4D2100053F69 /* RCDSettingServerUrlViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCDSettingServerUrlViewController.m; sourceTree = SOURCE_ROOT; };
27D6FF9D1DFE4D2C00053F69 /* RCDSettingUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCDSettingUserDefaults.h; sourceTree = SOURCE_ROOT; };
27D6FF9E1DFE4D2C00053F69 /* RCDSettingUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCDSettingUserDefaults.m; sourceTree = SOURCE_ROOT; };
2E29FF301DC1BE7300AF2DF0 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/JrmfInfo.strings; sourceTree = "<group>"; };
2E29FF311DC1BE7300AF2DF0 /* JResource.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = JResource.bundle; sourceTree = "<group>"; };
2E29FF321DC1BE7300AF2DF0 /* JrmfPacketKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JrmfPacketKit.framework; sourceTree = "<group>"; };
2E29FF331DC1BE7300AF2DF0 /* JYangToolKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JYangToolKit.framework; sourceTree = "<group>"; };
2E29FF341DC1BE7300AF2DF0 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/JrmfInfo.strings"; sourceTree = "<group>"; };
2E29FF3A1DC1BE8400AF2DF0 /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
2E29FF3B1DC1BE8400AF2DF0 /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
2E6B9A191E127BF7006EA6B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = JrmfInfo.strings; sourceTree = "<group>"; };
2E6B9A1D1E127C0C006EA6B4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = JrmfInfo.strings; sourceTree = "<group>"; };
2E7A36DB1E03A876005231BE /* JResource.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = JResource.bundle; sourceTree = "<group>"; };
2E7A36DC1E03A876005231BE /* jrmf.cer */ = {isa = PBXFileReference; lastKnownFileType = file; path = jrmf.cer; sourceTree = "<group>"; };
2E7A36DD1E03A876005231BE /* JrmfPacketKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JrmfPacketKit.framework; sourceTree = "<group>"; };
2E7A36DE1E03A876005231BE /* JrmfWalletKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JrmfWalletKit.framework; sourceTree = "<group>"; };
2E7A36DF1E03A876005231BE /* JYangToolKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JYangToolKit.framework; sourceTree = "<group>"; };
2E7A36E01E03A876005231BE /* WalletResource.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WalletResource.bundle; sourceTree = "<group>"; };
466684221B5DEA10000B7504 /* RCDSettingBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = RCDSettingBaseViewController.h; path = RCloudMessage/RCDSettingBaseViewController.h; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
466684231B5DEA10000B7504 /* RCDSettingBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; name = RCDSettingBaseViewController.m; path = RCloudMessage/RCDSettingBaseViewController.m; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
466684251B5DEA5B000B7504 /* RCDConversationSettingBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = RCDConversationSettingBaseViewController.h; path = RCloudMessage/RCDConversationSettingBaseViewController.h; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
Expand Down Expand Up @@ -854,23 +861,23 @@
files = (
E4C4E7E41A0A2F2800140067 /* CoreGraphics.framework in Frameworks */,
27AADC281DDC4DD800E1AE31 /* Foundation.framework in Frameworks */,
2E7A36E31E03A876005231BE /* JrmfPacketKit.framework in Frameworks */,
E4C4E7E61A0A2F2E00140067 /* UIKit.framework in Frameworks */,
27AADC271DDC4DCE00E1AE31 /* QuartzCore.framework in Frameworks */,
E4C3310E1A0C72A000E31B9A /* SystemConfiguration.framework in Frameworks */,
E4C330F41A0C722300E31B9A /* AudioToolbox.framework in Frameworks */,
27AADC261DDC4DB800E1AE31 /* AddressBook.framework in Frameworks */,
E4C330F21A0C721D00E31B9A /* AVFoundation.framework in Frameworks */,
2E7A36E51E03A876005231BE /* JYangToolKit.framework in Frameworks */,
E4C330FC1A0C724A00E31B9A /* CoreTelephony.framework in Frameworks */,
27C42ED51DE2FD7B003E2306 /* RongiFlyKit.framework in Frameworks */,
E4C497211A24849E00098C8A /* CoreLocation.framework in Frameworks */,
A6EFAB9F1BB0ED94007E9D67 /* libz.tbd in Frameworks */,
F82B55401DE03E40007392BD /* SafariServices.framework in Frameworks */,
F880EA791D0808B300FD5CC4 /* VideoToolbox.framework in Frameworks */,
A68AFAF41CCF0B3700F16B3D /* RongCallKit.framework in Frameworks */,
2E29FF371DC1BE7300AF2DF0 /* JrmfPacketKit.framework in Frameworks */,
F8AD4A5B1CAE5782006C1CBB /* CoreMotion.framework in Frameworks */,
E4C330FA1A0C724400E31B9A /* CoreMedia.framework in Frameworks */,
2E29FF381DC1BE7300AF2DF0 /* JYangToolKit.framework in Frameworks */,
F8AD4A571CAE5702006C1CBB /* libicucore.tbd in Frameworks */,
F8AD4A551CAE56A4006C1CBB /* PushKit.framework in Frameworks */,
A68AFAFD1CCF1ECE00F16B3D /* AgoraRtcEngineKit.framework in Frameworks */,
Expand All @@ -887,6 +894,7 @@
5111B07B1AE6A11A00317E71 /* RongIMKit.framework in Frameworks */,
F8B7DBD21BAC189700E9F9BD /* libopencore-amrnb.a in Frameworks */,
E4C330FE1A0C725200E31B9A /* CoreVideo.framework in Frameworks */,
2E7A36E41E03A876005231BE /* JrmfWalletKit.framework in Frameworks */,
27C42EEC1DE30637003E2306 /* iflyMSC.framework in Frameworks */,
E4C330F81A0C723A00E31B9A /* CoreAudio.framework in Frameworks */,
A6BD04181B1EEA6B00ACAF17 /* RongIMLib.framework in Frameworks */,
Expand Down Expand Up @@ -994,10 +1002,14 @@
2E29FF2E1DC1BE7300AF2DF0 /* JrmfIMLib */ = {
isa = PBXGroup;
children = (
2E29FF2F1DC1BE7300AF2DF0 /* JrmfInfo.strings */,
2E29FF311DC1BE7300AF2DF0 /* JResource.bundle */,
2E29FF321DC1BE7300AF2DF0 /* JrmfPacketKit.framework */,
2E29FF331DC1BE7300AF2DF0 /* JYangToolKit.framework */,
2E6B9A171E127BF7006EA6B4 /* en.lproj */,
2E7A36DB1E03A876005231BE /* JResource.bundle */,
2E7A36DC1E03A876005231BE /* jrmf.cer */,
2E7A36DD1E03A876005231BE /* JrmfPacketKit.framework */,
2E7A36DE1E03A876005231BE /* JrmfWalletKit.framework */,
2E7A36DF1E03A876005231BE /* JYangToolKit.framework */,
2E7A36E01E03A876005231BE /* WalletResource.bundle */,
2E6B9A1B1E127C0C006EA6B4 /* zh-Hans.lproj */,
);
name = JrmfIMLib;
path = framework/JrmfIMLib;
Expand All @@ -1013,6 +1025,23 @@
path = framework/AlipaySDK;
sourceTree = SOURCE_ROOT;
};
2E6B9A171E127BF7006EA6B4 /* en.lproj */ = {
isa = PBXGroup;
children = (
2E6B9A181E127BF7006EA6B4 /* JrmfInfo.strings */,
);
path = en.lproj;
sourceTree = "<group>";
};
2E6B9A1B1E127C0C006EA6B4 /* zh-Hans.lproj */ = {
isa = PBXGroup;
children = (
2E6B9A1C1E127C0C006EA6B4 /* JrmfInfo.strings */,
);
name = "zh-Hans.lproj";
path = "framework/JrmfIMLib/zh-Hans.lproj";
sourceTree = SOURCE_ROOT;
};
46A831B81AC014B2001A533F /* FindPsw */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -2116,14 +2145,17 @@
F894EC391DF7E47600EFD084 /* BQMM.bundle in Resources */,
2E29FF3C1DC1BE8400AF2DF0 /* AlipaySDK.bundle in Resources */,
27C42EED1DE30637003E2306 /* RongCloudiFly.bundle in Resources */,
2E29FF351DC1BE7300AF2DF0 /* JrmfInfo.strings in Resources */,
2E6B9A1E1E127C0C006EA6B4 /* JrmfInfo.strings in Resources */,
2E6B9A1A1E127BF7006EA6B4 /* JrmfInfo.strings in Resources */,
2E7A36E11E03A876005231BE /* JResource.bundle in Resources */,
8C55EB511B2A8CE5004285F4 /* Emoji.plist in Resources */,
2E29FF361DC1BE7300AF2DF0 /* JResource.bundle in Resources */,
E42A2E5A1AAEE76800F4C3AB /* Main.storyboard in Resources */,
5111B07D1AE6A11A00317E71 /* RongCloud.bundle in Resources */,
2E7A36E21E03A876005231BE /* jrmf.cer in Resources */,
A6CF8A351BD4CB6E00F3EA1A /* RCConfig.plist in Resources */,
E4BFAE251A121839007165B1 /* Images.xcassets in Resources */,
510624851AD63A9E00348452 /* RongCloudKit.strings in Resources */,
2E7A36E61E03A876005231BE /* WalletResource.bundle in Resources */,
987653631D796C5B008A6BF0 /* Launch Screen.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -2400,11 +2432,18 @@
name = MainInterface.storyboard;
sourceTree = "<group>";
};
2E29FF2F1DC1BE7300AF2DF0 /* JrmfInfo.strings */ = {
2E6B9A181E127BF7006EA6B4 /* JrmfInfo.strings */ = {
isa = PBXVariantGroup;
children = (
2E6B9A191E127BF7006EA6B4 /* en */,
);
name = JrmfInfo.strings;
sourceTree = "<group>";
};
2E6B9A1C1E127C0C006EA6B4 /* JrmfInfo.strings */ = {
isa = PBXVariantGroup;
children = (
2E29FF301DC1BE7300AF2DF0 /* en */,
2E29FF341DC1BE7300AF2DF0 /* zh-Hans */,
2E6B9A1D1E127C0C006EA6B4 /* zh-Hans */,
);
name = JrmfInfo.strings;
sourceTree = "<group>";
Expand Down
Loading

0 comments on commit 3a57c67

Please sign in to comment.