Files
PopupView/ExytePopupView.podspec
AlisaMylnikova f71f08f167 Add pod dependency
Fix podspec

Add ifs
2024-02-27 17:38:05 +07:00

27 lines
788 B
Ruby

Pod::Spec.new do |s|
s.name = "ExytePopupView"
s.version = "2.9.0"
s.summary = "SwiftUI library for toasts, alerts and popups"
s.homepage = 'https://github.com/exyte/PopupView.git'
s.license = 'MIT'
s.author = { 'Exyte' => 'info@exyte.com' }
s.source = { :git => 'https://github.com/exyte/PopupView.git', :tag => s.version.to_s }
s.social_media_url = 'http://exyte.com'
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.requires_arc = true
s.swift_version = "5.2"
s.source_files = [
'Source/*.h',
'Source/*.swift',
'Source/**/*.swift'
]
s.ios.dependency 'SwiftUIIntrospect'
end