-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMobileWorkflow.podspec
More file actions
23 lines (22 loc) · 1.18 KB
/
MobileWorkflow.podspec
File metadata and controls
23 lines (22 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'MobileWorkflow'
s.version = '2.1.35'
s.summary = 'Core functionality for MobileWorkflow on iOS.'
s.description = <<-DESC
Core functionality for MobileWorkflow on iOS, including ResearchKit derived steps and addtional custom steps.
DESC
s.homepage = 'https://www.mobileworkflow.io'
s.license = { :type => 'Copyright', :file => 'LICENSE' }
s.author = { 'Future Workshops' => 'info@futureworkshops.com' }
s.source = { :http => 'https://raw.github.com/FutureWorkshops/MobileWorkflowCore-iOS-Distribution/2.1.35/MobileWorkflowCore.zip' }
s.platform = :ios
s.swift_version = '5'
s.ios.deployment_target = '17.1'
s.default_subspecs = 'Core'
s.module_name = 'MobileWorkflowCore'
s.subspec 'Core' do |cs|
cs.vendored_frameworks = 'MobileWorkflowCore.xcframework'
cs.preserve_paths = ['MobileWorkflowCore.xcframework']
cs.resources = ['MobileWorkflowCore/**/*.{xib,xcassets,strings,stringsdict,m4v,fsh,vsh,xcdatamodeld}']
end
end