-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add sample code * update Podfile * fix NEMapKit.podspec * update Podfile * update NETeamUIKit.podspec
- Loading branch information
Showing
207 changed files
with
960 additions
and
1,025 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,57 @@ | ||
# Uncomment the next line to define a global platform for your project | ||
# platform :ios, '9.0' | ||
|
||
# 引入配置文件 | ||
require_relative "../../../PodConfigs/config_third.rb" | ||
require_relative "../../../PodConfigs/config_local_common.rb" | ||
require_relative "../../../PodConfigs/config_local_core.rb" | ||
require_relative "../../../PodConfigs/config_local_im.rb" | ||
require_relative "../../../PodConfigs/config_local_room.rb" | ||
require_relative "../../../PodConfigs/config_local_social.rb" | ||
|
||
platform :ios, '12.0' | ||
platform :ios, '12.0' | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
|
||
# XKit工程的podspec引用采用源码的环境变量 | ||
ENV["USE_SOURCE_FILES"] = "true" | ||
|
||
target 'IMUIKitOCExample' do | ||
# Comment the next line if you don't want to use dynamic frameworks | ||
use_frameworks! | ||
|
||
#登录组件 | ||
pod 'YXLogin', '1.1.0' | ||
|
||
#可选UI库 | ||
# pod 'NEContactUIKit', '9.6.5' | ||
# pod 'NEQChatUIKit', '9.6.5' | ||
# pod 'NEConversationUIKit', '9.6.5' | ||
# pod 'NEChatUIKit', '9.6.5' | ||
# pod 'NETeamUIKit', '9.6.5' | ||
|
||
# 基础库 | ||
pod 'NEChatKit', '10.5.1' | ||
|
||
#可选Kit库(和UIKit对应) | ||
# pod 'NEChatKit', '9.6.5' | ||
# UI 组件,依次为通讯录组件、会话列表组件、会话(聊天)组件、群相关设置组件 | ||
pod 'NEChatUIKit', '10.5.1' | ||
pod 'NEContactUIKit', '10.5.1' | ||
pod 'NEConversationUIKit', '10.5.1' | ||
pod 'NETeamUIKit', '10.5.1' | ||
|
||
|
||
#基础kit库 | ||
# pod 'NECommonUIKit', '9.6.5' | ||
# pod 'NECommonKit', '9.6.5' | ||
# pod 'NECoreIMKit', '9.6.5' | ||
# pod 'NECoreKit', '9.6.5' | ||
# pod 'NEMapKit', '9.6.5' | ||
# 扩展库 - 地理位置组件 | ||
pod 'NEMapKit', '10.5.1' | ||
|
||
pod NIMSDK.name, NIMSDK.version2 | ||
# 扩展库 - AI 划词搜索 | ||
pod 'NEAISearchKit', '1.0.4' | ||
|
||
pod 'NECoreKit', :path => '../../../CoreKit/NECoreKit/NECoreKit.podspec' | ||
pod 'NECoreIM2Kit', :path => '../../../CoreKit/NECoreIM2Kit/NECoreIM2Kit.podspec' | ||
pod 'NECommonKit', :path => '../../../Common/NECommonKit/NECommonKit.podspec' | ||
pod 'NECommonUIKit', :path => '../../../Common/NECommonUIKit/NECommonUIKit.podspec' | ||
pod 'NEChatKit', :path => '../../NEChatKit/NEChatKit.podspec' | ||
pod 'NEChatUIKit', :path => '../../NEChatUIKit/NEChatUIKit.podspec' | ||
pod 'NEContactUIKit', :path => '../../NEContactUIKit/NEContactUIKit.podspec' | ||
pod 'NEConversationUIKit', :path => '../../NEConversationUIKit/NEConversationUIKit.podspec' | ||
pod 'NETeamUIKit', :path => '../../NETeamUIKit/NETeamUIKit.podspec' | ||
pod 'NEMapKit', :path => '../../NEMapKit/NEMapKit.podspec' | ||
# 扩展库 - 呼叫组件 | ||
pod 'NERtcCallKit/NOS_Special', '3.1.0' | ||
pod 'NERtcCallUIKit/NOS_Special', '3.1.0' | ||
|
||
# 扩展库,依次为 RTC 音视频基础组件、RTC 音视频神经网络组件(使用背景虚化功能需要集成)、RTC 音视频背景分割组件(使用背景虚化功能需要集成) | ||
pod 'NERtcSDK/RtcBasic', '5.6.33' | ||
pod 'NERtcSDK/Nenn' | ||
pod 'NERtcSDK/Segment' | ||
|
||
|
||
|
||
# 如果需要查看UI部分源码请注释掉以上在线依赖,打开下面的本地依赖 | ||
# pod 'NEQChatUIKit', :path => '../NEQChatUIKit/NEQChatUIKit.podspec' | ||
# pod 'NEContactUIKit', :path => '../NEContactUIKit/NEContactUIKit.podspec' | ||
# pod 'NEConversationUIKit', :path => '../NEConversationUIKit/NEConversationUIKit.podspec' | ||
# pod 'NETeamUIKit', :path => '../NETeamUIKit/NETeamUIKit.podspec' | ||
# pod 'NEChatUIKit', :path => '../NEChatUIKit/NEChatUIKit.podspec' | ||
# pod 'NEContactUIKit', :path => 'NEContactUIKit/NEContactUIKit.podspec' | ||
# pod 'NEConversationUIKit', :path => 'NEConversationUIKit/NEConversationUIKit.podspec' | ||
# pod 'NETeamUIKit', :path => 'NETeamUIKit/NETeamUIKit.podspec' | ||
# pod 'NEChatUIKit', :path => 'NEChatUIKit/NEChatUIKit.podspec' | ||
# pod 'NEMapKit', :path => 'NEMapKit/NEMapKit.podspec' | ||
# pod 'NEAISearchKit', :path => 'NEAISearchKit/NEAISearchKit.podspec' | ||
# pod 'NERtcCallUIKit', :path => 'NERtcCallUIKit/NERtcCallUIKit.podspec' | ||
|
||
|
||
end | ||
|
||
# ⚠️如果pod依赖报错,可打开以下注释 | ||
post_install do |installer| | ||
installer.pods_project.targets.each do |target| | ||
target.build_configurations.each do |config| | ||
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "12.0" | ||
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' | ||
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 0 additions & 68 deletions
68
NEChatUIKit/NEChatUIKit/Classes/Base/BaseViewController/ChatTableViewController.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.