forked from nateemma/phixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
56 lines (40 loc) · 1.24 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
50
51
52
53
54
55
56
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
target 'phixer' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for phixer
#platform :ios
platform :ios, '11'
# Neon layout constraint helpers
pod 'Neon'
# Chameloen colour schemes
#pod 'ChameleonFramework/Swift'
# Swift 3 version:
#pod 'ChameleonFramework/Swift', :git => 'https://github.com/ViccAlexander/Chameleon.git'
# Swift 5 version:
#pod 'ChameleonFramework/Swift', :git => 'https://github.com/wowansm/Chameleon.git', :commit => "96d52c36a45847fff60bcff7a58fec1e4bd7390b"
pod 'ChameleonFramework/Swift', :git => 'https://github.com/wowansm/Chameleon.git', :branch => "swift5"
# Swifty Beaver logging framework
pod 'SwiftyBeaver'
#Google AdMob framework
pod 'Firebase/Core'
pod 'Firebase/AdMob'
#Image Caching
#pod 'Kingfisher'
# JSON Parsing
pod 'SwiftyJSON'
# Star rating view
#pod 'Cosmos', '~> 9.0'
pod 'Cosmos'
#Picture carousekl
pod 'iCarousel'
target 'phixerTests' do
inherit! :search_paths
# Pods for testing
end
target 'phixerUITests' do
inherit! :search_paths
# Pods for testing
end
end