41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
# 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 github,not 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
|