-
Notifications
You must be signed in to change notification settings - Fork 11
/
MinimizableView.podspec
34 lines (23 loc) · 1.21 KB
/
MinimizableView.podspec
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
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MinimizableView'
s.version = '2.4.2'
s.summary = 'SwiftUI view that minimises to the bottom of the screen similar to the mini-player in Apple Music or Spotify.'
s.swift_version = '5.1'
s.description = <<-DESC
MinimizableView is a simple SwiftUI view for iOS and iPadOS that can minimise like the mini-player in the Spotify or Apple Music app.
It can only be used from iOS 13.0 or iPadOS because SwiftUI is not supported in earlier iOS versions.
DESC
s.homepage = 'https://github.com/DominikButz/MinimizableView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'dominikbutz' => 'dominikbutz@gmail.com' }
s.source = { :git => 'https://github.com/DominikButz/MinimizableView.git', :tag => s.version.to_s }
s.platform = :ios
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/**/*'
#s.exclude_files = 'MinimizableView /**/*.plist'
# s.public_header_files = 'MinimizableView/**/*.h'
end