-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMKQRScanner.podspec
More file actions
23 lines (18 loc) · 863 Bytes
/
Copy pathMKQRScanner.podspec
File metadata and controls
23 lines (18 loc) · 863 Bytes
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 = 'MKQRScanner'
s.version = '0.1.3'
s.summary = 'MKQRScanner is the very lightweight QR code scanner'
s.description = <<-DESC
Now your QR code scanning life more easy. Lets enjoy this.
DESC
s.homepage = 'https://github.com/MKHGLab/MKQRScanner'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'MKHG Lab' => 'mkhglab@gmail.com' }
s.source = { :git => 'https://github.com/MKHGLab/MKQRScanner.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'MKQRScanner/**/*.swift'
s.resources = 'MKQRScanner/**/*.{storyboard,xib,xcassets,json,imageset,png}'
s.resource_bundles = {
'MKQRScanner' => ['MKQRScanner/**/*.{storyboard,xib,xcassets,json,imageset,png}']
}
end