-
Notifications
You must be signed in to change notification settings - Fork 51
/
Podfile
49 lines (38 loc) · 1.22 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
49
platform :ios, '9.0'
use_frameworks!
workspace 'Macaw-Examples.xcworkspace'
project 'AnimationPrinciples/AnimationPrinciples.xcodeproj'
project 'DesignAwardedApps/Auxy/Auxy.xcodeproj'
project 'DesignAwardedApps/Streaks/Streaks.xcodeproj'
project 'DesignAwardedApps/Zova/Zova.xcodeproj'
project 'GettingStarted/GettingStarted.xcodeproj'
project 'HealthStat/HealthStat.xcodeproj'
project 'PeriodicTable/PeriodicTable.xcodeproj'
project 'LiquidSwipe/LiquidSwipe.xcodeproj'
abstract_target 'Macaw-Examples' do
pod 'Macaw'
target 'AnimationPrinciples' do
project 'AnimationPrinciples/AnimationPrinciples.xcodeproj'
end
target 'Auxy' do
project 'DesignAwardedApps/Auxy/Auxy.xcodeproj'
end
target 'Streaks' do
project 'DesignAwardedApps/Streaks/Streaks.xcodeproj'
end
target 'Zova' do
project 'DesignAwardedApps/Zova/Zova.xcodeproj'
end
target 'GettingStarted' do
project 'GettingStarted/GettingStarted.xcodeproj'
end
target 'HealthStat' do
project 'HealthStat/HealthStat.xcodeproj'
end
target 'PeriodicTable' do
project 'PeriodicTable/PeriodicTable.xcodeproj'
end
target 'LiquidSwipe' do
project 'LiquidSwipe/LiquidSwipe.xcodeproj'
end
end