forked from exyte/FloatingButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFloatingButton.podspec
More file actions
24 lines (20 loc) · 758 Bytes
/
FloatingButton.podspec
File metadata and controls
24 lines (20 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "FloatingButton"
s.version = "0.0.3"
s.summary = "Easily customizable floating button menu created with SwiftUI."
s.homepage = 'https://github.com/exyte/FloatingButton.git'
s.license = 'MIT'
s.author = { 'exyte' => 'info@exyte.com' }
s.source = { :git => 'https://github.com/exyte/FloatingButton.git', :tag => s.version.to_s }
s.social_media_url = 'http://exyte.com'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.requires_arc = true
s.swift_version = '5.1'
s.source_files = [
'Source/*.h',
'Source/*.swift'
]
end