forked from InderKumarRathore/DeviceUtil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceUtil_Brainium.podspec
More file actions
18 lines (17 loc) · 970 Bytes
/
DeviceUtil_Brainium.podspec
File metadata and controls
18 lines (17 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# read for development information https://guides.cocoapods.org/making/making-a-cocoapod.html
Pod::Spec.new do |s|
s.name = "DeviceUtil_Brainium"
s.version = "1.9.22"
s.summary = "DeviceUtil helps identifying the exact harware type of the device. e.g. iPhone 6 or iPhone 6s."
s.homepage = "https://github.com/BrainiumLLC/DeviceUtil.git"
s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "BrainiumLLC" => "jonathan@brainiumstudios.com" }
s.source = { :git => "https://github.com/BrainiumLLC/DeviceUtil.git", :tag => "#{s.version}" }
s.requires_arc = true
s.ios.deployment_target = '11.0'
# bundle name is 'DeviceUtil', _not_ 'Brainium_DeviceUtil'. this fact is assumed by DeviceUtil.m
s.resource_bundles = {"DeviceUtil" => ['Source/DeviceList.plist']}
s.source_files = "Source/*.{h,m}"
s.exclude_files = "Classes/Exclude"
end