-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathManagedAppConfigLib.podspec
More file actions
22 lines (17 loc) · 988 Bytes
/
ManagedAppConfigLib.podspec
File metadata and controls
22 lines (17 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "ManagedAppConfigLib"
s.version = "1.1.2"
s.summary = "Simplify working with Managed App Configuration and Feedback."
s.description = <<-DESC
ManagedAppConfigLib makes it easier to work with Apple's [Managed App Configuration](https://developer.apple.com/library/content/samplecode/sc2279/Introduction/Intro.html) by providing a couple property wrappers and an object-based approach.
DESC
s.homepage = "https://appconfig.org/"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Kyle Hammond", "James Felton"
s.swift_versions = "5.1"
s.platform = :ios, "9.0" # Actually supports iOS 8, but CocoaPods issue #11839
s.tvos.deployment_target = "10.2"
s.macos.deployment_target = "11"
s.source = { :git => "https://github.com/jamf/ManagedAppConfigLib.git", :tag => "#{s.version}" }
s.source_files = "Sources/ManagedAppConfigLib/*.{swift}"
end