
- 在Podfile中将NEChatKit和NEChatUIKit的版本更新至10.8.3,确保使用最新功能和修复。 - 更新Podfile.lock以反映新的依赖关系和版本信息。 - 在AppDelegate中引入NIMSDK,准备集成即时通讯功能。 - 移除Info.plist中的相机使用描述,添加新的隐私描述以符合最新需求。 - 在UserIDDisplay组件中更新文本,增强用户信息展示的清晰度。 - 在项目配置中添加相机和麦克风使用描述,确保符合隐私政策要求。
17 lines
324 B
Objective-C
17 lines
324 B
Objective-C
//
|
|
// Use this file to import your target's public headers that you would like to expose to Swift.
|
|
//
|
|
|
|
// DES 加密相关 OC 文件
|
|
#import "DESEncrypt.h"
|
|
#import "Base64.h"
|
|
|
|
// AES 加密相关 OC 文件
|
|
#import "AESUtils.h"
|
|
|
|
// CommonCrypto for MD5 hash
|
|
#import <CommonCrypto/CommonCrypto.h>
|
|
|
|
#import <NIMSDK/NIMSDK.h>
|
|
|