30 lines
759 B
Ruby
30 lines
759 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
|
|
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
|