-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
48 lines (43 loc) · 1.05 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
platform :ios, '7.0'
inhibit_all_warnings!
#公有库
target "Demos" do
source 'https://github.com/CocoaPods/Specs.git'
pod 'YYKit', '~> 1.0.3'
pod 'MBProgressHUD', '0.9.1'
pod 'BlocksKit', '2.2.5'
pod 'pop', '1.0.8'
pod 'JGProgressHUD', '1.2.7'
pod 'UIView+Positioning', '1.1'
pod 'Masonry', '0.6.2'
pod 'LGAlertView', '1.0.0'
pod 'AFNetworking', '3.0.4'
pod 'MJExtension', '3.0.8'
pod 'Mantle', '~> 2.0.7'
pod 'PureLayout', '3.0.1'
pod 'SDWebImage', '3.7.3'
pod 'SSZipArchive', '1.0.1'
pod 'JSPatch', '0.1.5'
pod 'TMCache', '2.1.0'
pod 'FLEX', '2.0.0'
pod 'Magnet-XMPPFramework', '3.6.10'
pod 'SVPullToRefresh', '~> 0.4.1'
pod 'FMDB','~> 2.6'
#私有库
pod 'GLTestSpec', :git => 'https://git.coding.net/schiller/GLTestSpecDemo.git', :branch => 'master'
#pod 'GLTestSpec', :path => '/Users/yxt/Desktop/GLTestSpecDemo/Spec'
pod 'React', :path => './node_modules/react-native', :subspecs => [
'Core',
'RCTImage',
'RCTNetwork',
'RCTText',
'RCTWebSocket',
'ART',
'RCTActionSheet',
'RCTGeolocation',
'RCTPushNotification',
'RCTSettings',
'RCTVibration',
'RCTLinkingIOS',
]
end