-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
24 lines (19 loc) · 859 Bytes
/
Podfile
File metadata and controls
24 lines (19 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
workspace 'AppTemplate'
install! 'cocoapods',
:deterministic_uuids => false
target 'AppTemplateMobile' do
project 'AppTemplate'
platform :ios, '13.0'
# Comment the next line if you're not using Swift
# and don't want to use dynamic frameworks
use_frameworks!
pod 'MobileViews', :path => './', :testspecs => ['MobileViewsTests']
pod 'ViewModels', :path => './', :testspecs => ['ViewModelsTests']
pod 'Models', :path => './', :testspecs => ['ModelsTests']
pod 'Services', :path => './', :testspecs => ['ServicesTests']
# --- here override sources for any needed pods...
# --- list any app-level pods like crash reporting, Reveal, etc.
pod 'SwiftLint', :configurations => ['Debug']
pod 'Reveal-SDK', '13', :configurations => ['Debug']
pod 'HockeySDK', '~> 4.1.0', :subspecs => ['CrashOnlyLib']
end