forked from InderKumarRathore/DeviceUtil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceUtil.podspec
More file actions
16 lines (16 loc) · 788 Bytes
/
DeviceUtil.podspec
File metadata and controls
16 lines (16 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "DeviceUtil"
s.version = "6.2.0"
s.summary = "DeviceUtil helps identifying the exact hardware type of the device. e.g. iPhone 6 or iPhone 6s."
s.homepage = "https://github.com/InderKumarRathore/DeviceUtil.git"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Inder Kumar Rathore" => "" }
s.social_media_url = "https://twitter.com/ikr_303"
s.source = { :git => "https://github.com/InderKumarRathore/DeviceUtil.git", :tag => s.version }
s.source_files = "Source/*.{h,m}"
s.resource_bundles = {s.name => ['Source/DeviceList.plist']}
s.requires_arc = false
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
end