mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
24 lines
625 B
Ruby
24 lines
625 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SofaWidgetsSupport'
|
|
s.version = '1.0.0'
|
|
s.summary = 'Native helpers for Sofa iOS widgets'
|
|
s.description = 'Image downloading and caching for Sofa widget extensions'
|
|
s.author = ''
|
|
s.homepage = 'https://docs.expo.dev/modules/'
|
|
s.platforms = {
|
|
:ios => '15.1',
|
|
:tvos => '15.1'
|
|
}
|
|
s.source = { git: '' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
|
|
# Swift/Objective-C compatibility
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
}
|
|
|
|
s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
|
|
end
|