-
Notifications
You must be signed in to change notification settings - Fork 46
/
APNumberPad.podspec
27 lines (22 loc) · 1.04 KB
/
APNumberPad.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
Pod::Spec.new do |s|
s.name = 'APNumberPad'
s.version = '1.3.4'
s.summary = 'Full clone of iOS number keyboard with customizable function button'
s.description = <<-DESC
Custom keyboard for iOS allows you to create a keyboard inputView
that looks and feels just like the iPhone keyboard
with UIKeyboardTypeNumberPad as keyboardType.
Also APNumberPad provides customizable left-function button.
DESC
s.homepage = 'https://github.com/podkovyrin/APNumberPad'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Andrew Podkovyrin' => 'podkovyrin@gmail.com' }
s.source = { :git => 'https://github.com/podkovyrin/APNumberPad.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/podkovyr'
# s.ios.deployment_target = '9.0'
s.ios.deployment_target = '15.0'
s.source_files = 'APNumberPad/**/*.{h,m}'
s.public_header_files = 'APNumberPad/*.h'
s.resources = 'APNumberPad/Assets/*.png'
s.frameworks = 'UIKit'
end