source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
platform :ios, '10.0'
inhibit_all_warnings!
target 'targetName' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'Alamofire'
pod 'Kingfisher'
pod 'HXPHPicker'
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git'
def player_pods(subName)
pod 'SuperPlayer', :path => '../SDK/SuperPlayerKit/SuperPlayer.podspec', :subspecs => ["#{subName}"]
end
def beautyInstall
pod 'CosmosEffect', :path => '../SDK/MOMOBeauty/CosmosEffect'
pod 'MMBeautyUI','0.0.7', :source => 'https://github.com/cosmos33/MMSpecs.git'
end
beautyInstall
# player_pods 'Professional'
end
pre_install do |installer|
remove_swiftui()
end
def remove_swiftui
# 解决 xcode13 Release模式下SwiftUI报错问题
system("rm -rf ./Pods/Kingfisher/Sources/SwiftUI")
code_file = "./Pods/Kingfisher/Sources/General/KFOptionsSetter.swift"
code_text = File.read(code_file)
code_text.gsub!(/#if canImport\(SwiftUI\) \&\& canImport\(Combine\)(.|\n)+#endif/,'')
system("rm -rf " + code_file)
aFile = File.new(code_file, 'w+')
aFile.syswrite(code_text)
aFile.close()
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
#解决Xcode13.3.1 之后 architecture 失败问题
if target.name == "HXPHPicker"
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end
Podfile Bitcode 设置 No
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Bitcode 在”Build Settings”->”Enable Bitcode”选项中看到这个设置。
- CocoaPods编译依赖库的时候搞的鬼,主工程设置Bitcode为NO之后,但是Pod编译的时候把部分依赖工程设...
- 对项目进行 pod install 后发现有如下提示: 看着这些多余的提示就特别不爽,之后就对项目进行如下配置:
- 做了一个第三方库,项目打包的时候报错,发现是自定义库没有支持armv7,故而查了一下Architectures相关...