-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceNameKit.podspec
More file actions
23 lines (20 loc) · 895 Bytes
/
DeviceNameKit.podspec
File metadata and controls
23 lines (20 loc) · 895 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 |spec|
spec.name = "DeviceNameKit"
spec.version = "0.0.1"
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",
:watchos => "6.0",
:tvos => "13.0",
:visionos => "1.0"
}
spec.source_files = "Sources/DeviceNameKit/**/*.{swift}"
spec.frameworks = "Foundation"
spec.requires_arc = true
end