-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNFCDecoder.podspec
32 lines (23 loc) · 1.16 KB
/
NFCDecoder.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
#
# Be sure to run `pod lib lint NFCDecoder.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'NFCDecoder'
s.version = '1.0.2'
s.summary = 'Decodes NFCNDEFMessage or NFCNDEFPayload into String, URL or smart poster.'
s.description = <<-DESC
Apple did a great job introducing CoreNFC in iOS 11.
NFCDecoder adds the final piece to the puzzle - it gets actual Strings and URLs from that NFCNDEFPayload or NFCNDEFMessage.
All widely used payload types are supported (text, URI and smart poster). NFCDecoder is free, lightweight and written in Swift.
Try the example!
DESC
s.homepage = 'https://github.com/impekable/NFCDecoder'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Impekable LLC' => '[email protected]', 'Alexander Vasenin' => '[email protected]' }
s.source = { :git => 'https://github.com/impekable/NFCDecoder.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '4.2'
s.frameworks = 'CoreNFC'
s.source_files = 'NFCDecoder/Classes/**/*'
end