-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
42 lines (33 loc) · 942 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
30
31
32
33
34
35
36
37
38
39
40
41
42
source 'https://cdn.cocoapods.org/'
source 'https://github.com/FutureWorkshops/MWPodspecs.git'
workspace 'MWCharts'
platform :ios, '17.1'
inhibit_all_warnings!
use_frameworks!
project 'MWCharts/MWCharts.xcodeproj'
project 'MWChartsPlugin/MWChartsPlugin.xcodeproj'
abstract_target 'MWCharts' do
pod 'MobileWorkflow'
pod 'Charts'
pod 'Colours'
target 'MWCharts' do
project 'MWCharts/MWCharts.xcodeproj'
pod 'MWChartsPlugin', path: './MWChartsPlugin.podspec'
target 'MWChartsTests' do
inherit! :search_paths
end
end
target 'MWChartsPlugin' do
project 'MWChartsPlugin/MWChartsPlugin.xcodeproj'
target 'MWChartsPluginTests' do
inherit! :search_paths
end
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ""
end
end
end