-
Notifications
You must be signed in to change notification settings - Fork 120
/
EBBannerViewSwift.podspec
51 lines (23 loc) · 1.35 KB
/
EBBannerViewSwift.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Pod::Spec.new do |s|
s.name = "EBBannerViewSwift"
s.version = "1.1.3"
s.summary = "展示跟iOS9~13推送一样的横幅/提示音/振动,或自定义view|Show a banner the same with iOS9/10/11/12 nofitication(sound/vibrate), or customize."
s.description = <<-DESC
App在前台时展示跟iOS9,10,11,12推送通知一样UI的横幅/自动提示音或振动,而且支持自定义样式。Show a banner the same UI with iOS9,10,11,12 nofitication(auto play sound/vibrate) on foreground, support custom UI.
DESC
s.homepage = "https://github.com/pikacode/EBBannerView"
s.license = "MIT"
s.author = { "pikacode" => "[email protected]" }
s.swift_versions = ['5.0', '5.1']
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/pikacode/EBBannerView.git", :tag => "#{s.version}" }
s.source_files = "EBBannerView/SwiftClasses/*.{swift}"
# s.exclude_files = "Classes/Exclude"
#s.public_header_files = "EBBannerView/SwiftClasses/*.{swift}"
s.resources = "EBBannerView/Classes/*.{xib,mp3}"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.frameworks = "UIKit", "Foundation", "AudioToolbox"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
end