-
-
Notifications
You must be signed in to change notification settings - Fork 440
/
AMPopTip.podspec
23 lines (23 loc) · 1.12 KB
/
AMPopTip.podspec
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 = "AMPopTip"
s.version = "4.12.0"
s.summary = "Animated popover, great for subtle UI tips and onboarding."
s.description = <<-DESC
Animated popover that pops out of a frame. You can specify the
direction of the popover and the arrow that points to its origin.
Color, border radius and font can be easily customized.
This popover can be used to leave subtle hints about your UI and
provide fun looking onboarding popups.
DESC
s.homepage = "https://github.com/andreamazz/AMPopTip"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Andrea Mazzini" => "[email protected]" }
s.source = { :git => "https://github.com/andreamazz/AMPopTip.git", :tag => s.version }
s.platform = :ios, '11.0'
s.swift_version = '5.3'
s.source_files = 'Source/*.swift'
s.requires_arc = true
s.weak_framework = 'SwiftUI'
s.social_media_url = 'https://twitter.com/theandreamazz'
s.visionos.deployment_target = '1.0'
end