forked from gureum/gureum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
48 lines (46 loc) · 1.02 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
workspace 'Gureum'
target 'OSX' do
platform :osx, "10.13"
project 'Gureum.xcodeproj'
pod 'cdebug'
pod 'FoundationExtension', '~> 1.3.1'
pod 'Fabric'
pod 'Crashlytics'
end
target 'Preferences' do
use_frameworks!
platform :osx, "10.13"
project 'Gureum.xcodeproj'
pod 'MASShortcut'
end
target 'PreferencesApp' do
use_frameworks!
platform :osx, "10.13"
project 'Gureum.xcodeproj'
pod 'MASShortcut'
end
target 'OSXTests' do
platform :osx, "10.13"
project 'Gureum.xcodeproj'
end
target :'App' do
platform :ios, "9.0"
project 'iOS.xcodeproj'
pod 'FoundationExtension', '~> 1.3.1'
pod 'Fabric'
pod 'Crashlytics'
pod 'GoogleMobileAds'
pod 'GlobalActivityIndicatorView', '>= 0.1.1'
end
target :'iOS' do
platform :ios, "9.0"
project 'iOS.xcodeproj'
pod 'FoundationExtension', '~> 1.3.1'
pod 'Fabric'
pod 'Crashlytics'
end
target :'iOSTests' do
platform :ios, "9.0"
project 'iOS.xcodeproj'
pod 'FoundationExtension', '~> 1.3.1'
end