Files
swiftGrammar/Podfile

41 lines
1.1 KiB
Ruby
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '13.4'
source 'https://github.com/CocoaPods/Specs.git' # download from githubnot cdn
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end
target 'AIGrammar' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for AIGrammar
# 当遇到 Pod install 出错CDN资源不可用时可以指定 git地址安装
pod 'TrustDecision', '1.4'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
pod 'SwiftJWT'
pod 'SwiftyBeaver', :git => 'https://github.com/SwiftyBeaver/SwiftyBeaver.git'
pod 'Firebase/Analytics'
pod 'FirebaseCrashlytics'
pod 'FirebasePerformance'
target 'AIGrammarTests' do
inherit! :search_paths
# Pods for testing
end
target 'AIGrammarUITests' do
# Pods for testing
end
end