-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPodfile
57 lines (42 loc) · 1.29 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
57
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'OCTemplate' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# 提示组件框架
pod 'SVProgressHUD', '~> 2.2.2'
# 网络请求框架
pod 'YTKNetwork', '~> 2.0.3'
# AOP 面向切面
pod 'Aspects', '~> 1.4.1'
# 响应函数式框架
pod 'ReactiveObjC', '~> 3.0.0'
# 路由组件化解耦
pod 'JLRoutes', '~> 2.0.5'
# 提示组件框架
pod 'SVProgressHUD', '~> 2.2.2'
# 自动布局
pod 'Masonry', '~> 1.0.2'
# 轻量卡片布局
pod 'AutoAlignButtonTools', '~> 0.3.0'
# React 组件
# 根据实际路径修改下面的`:path`
pod 'React', :path => './react/node_modules/react-native', :subspecs => [
'Core',
'RCTText',
'RCTNetwork',
'RCTWebSocket', # 这个模块是用于调试功能的
# 在这里继续添加你所需要的模块
]
# 如果你的RN版本 >= 0.42.0,请加入下面这行
pod "Yoga", :path => "./react/node_modules/react-native/ReactCommon/yoga"
# Pods for OCTemplate
target 'OCTemplateTests' do
inherit! :search_paths
# Pods for testing
end
target 'OCTemplateUITests' do
inherit! :search_paths
# Pods for testing
end
end