-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
29 lines (23 loc) · 947 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
inhibit_all_warnings!
workspace 'easy-weex'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pre_install do |installer|
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end
# debug open
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
if config.name.include?("QapDistribution")
config.build_settings['GCC_OPTIMIZATION_LEVEL'] = '0'
end
end
end
target 'easy-weex' do
pod 'WeexSDK', :git => 'https://github.com/apache/incubator-weex.git'
# pod 'GCanvas', :git => 'https://github.com/snice/GCanvas.git', :branch => 'develop'
# pod 'WeexGcanvas', :git => 'https://github.com/alibaba/GCanvas.git'
pod 'WeexKit', :path=>'./WeexKit'
end