-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathDeviceGuru.podspec
24 lines (20 loc) · 892 Bytes
/
DeviceGuru.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
Pod::Spec.new do |spec|
spec.name = 'DeviceGuru'
spec.version = '10.0.10'
spec.license = 'MIT'
spec.summary = 'DeviceGuru helps identifying the exact hardware type of the device. e.g. iPhone 6 or iPhone 6s.'
spec.homepage = 'https://github.com/InderKumarRathore/DeviceGuru'
spec.authors = { 'Inder Kumar Rathore' => '' }
spec.source = { :git => 'https://github.com/InderKumarRathore/DeviceGuru.git', :tag => spec.version }
spec.requires_arc = true
spec.swift_versions = ['4.0', '5.0']
spec.platforms = { :ios => "12.0", :tvos => "12.0", :watchos => "4.0" }
spec.default_subspec = "DeviceGuru"
spec.subspec "DeviceGuru" do |ss|
ss.dependency "DeviceGuru/Resources"
ss.source_files = "Sources/*.swift"
end
spec.subspec "Resources" do |ss|
ss.resource_bundle = { spec.name => ["Sources/DeviceList.plist", "Sources/PrivacyInfo.xcprivacy"] }
end
end