1 Star 0 Fork 18

黄智鑫/TangSengDaoDaoiOS

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Podfile 2.41 KB
Copy Edit Raw Blame History
tangtaoit authored 2024-06-19 16:54 . fix: upgrade wukongimsdk
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
workspace 'TangSengDaoDaoiOS.xcworkspace'
post_install do |installer|
# 填写你自己的开发者团队的team id
dev_team = "H8PU463W68"
project = installer.aggregate_targets[0].user_project
project.targets.each do |target|
target.build_configurations.each do |config|
if dev_team.empty? and !config.build_settings['DEVELOPMENT_TEAM'].nil?
dev_team = config.build_settings['DEVELOPMENT_TEAM']
end
end
end
# Fix bundle targets' 'Signing Certificate' to 'Sign to Run Locally'
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
config.build_settings['DEVELOPMENT_TEAM'] = dev_team
end
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
end
abstract_target 'TangSengDaoDaoiOSBase' do
# pod 'lottie-ios', '~> 2.5.3'
pod 'Socket.IO-Client-Swift'
pod 'SSZipArchive', '~> 2.2.3'
pod 'SocketRocket'
pod 'Aspects'
pod 'ReactiveObjC'
target 'TangSengDaoDaoiOS' do
project 'TangSengDaoDaoiOS.xcodeproj'
use_frameworks!
pod 'YBImageBrowser/NOSD', :git=>'https://github.com/tangtaoit/YBImageBrowser.git'
pod 'YYImage/WebP', :git => 'https://github.com/tangtaoit/YYImage.git'
pod 'AsyncDisplayKit', :git => 'https://github.com/tangtaoit/AsyncDisplayKit.git'
pod 'librlottie', :git => 'https://github.com/tangtaoit/librlottie.git'
pod 'WuKongIMSDK', :path => './Modules/WuKongIMiOSSDK' ## WuKongBase 基础工具包 源码地址 https://github.com/WuKongIM/WuKongIMiOSSDK
# pod 'WuKongIMSDK', :path => '../../../wukongIM/iOS/WuKongIMiOSSDK'
# pod 'WuKongIMSDK', '~> 1.0.2' ## 源码地址 https://github.com/WuKongIM/WuKongIMiOSSDK
pod 'WuKongBase', :path => './Modules/WuKongBase' ## WuKongBase 基础工具包
pod 'WuKongLogin', :path => './Modules/WuKongLogin' ## 登录模块
pod 'WuKongContacts', :path => './Modules/WuKongContacts' ## 联系人模块
pod 'WuKongDataSource', :path => './Modules/WuKongDataSource' ## 数据源
end
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/huang_zhi_xin/TangSengDaoDaoiOS.git
git@gitee.com:huang_zhi_xin/TangSengDaoDaoiOS.git
huang_zhi_xin
TangSengDaoDaoiOS
TangSengDaoDaoiOS
main

Search