-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceNameKit.podspec
More file actions
25 lines (22 loc) · 979 Bytes
/
Copy pathDeviceNameKit.podspec
File metadata and controls
25 lines (22 loc) · 979 Bytes
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
Pod::Spec.new do |spec|
spec.name = "DeviceNameKit"
spec.version = "2.0.0"
spec.summary = "A library for fetching device names based on model identifiers."
spec.description = "DeviceNameKit provides a simple way to retrieve human-readable device names from device model identifiers."
spec.homepage = "https://github.com/kimdaehee0824/DeviceNameKit"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "daehee kim" => "kimdaehee.public@gmail.com" }
spec.source = { :git => "https://github.com/kimdaehee0824/DeviceNameKit.git", :tag => "#{spec.version}" }
spec.swift_version = "5.9"
spec.platforms = {
:ios => "13.0",
:osx => "11.0",
:watchos => "6.0",
:tvos => "13.0",
:visionos => "1.0"
}
spec.source_files = "Sources/DeviceNameKit/**/*.{swift}"
spec.resource_bundles = { "DeviceNameKit" => ["DeviceName"] }
spec.frameworks = "Foundation"
spec.requires_arc = true
end