-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAANotifier.podspec
24 lines (17 loc) · 1.05 KB
/
AANotifier.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 = 'AANotifier'
s.version = '1.2'
s.summary = 'AANotifier allows you to create UIView based fragments to be appear on screen at runtime in iOS, written in Swift.'
s.description = <<-DESC
AANotifier allows you to create UIView based fragments to be appear on screen at runtime. It is designed to make custom elements in UIView even from xib based to animate on screen. It can be a custom popup view, action bar, message display banner etc.
DESC
s.homepage = 'https://github.com/EngrAhsanAli/AANotifier'
s.screenshots = 'https://raw.githubusercontent.com/EngrAhsanAli/AANotifier/master/Screenshots/AANotifier.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'EngrAhsanAli' => '[email protected]' }
s.source = { :git => 'https://github.com/EngrAhsanAli/AANotifier.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'AANotifier/Classes/**/*'
s.swift_version = '5.0'
s.dependency 'AAViewAnimator', '~> 1.1'
end