forked from microsoft/FluentDarkModeKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDarkModeKit.podspec
More file actions
19 lines (17 loc) · 846 Bytes
/
Copy pathDarkModeKit.podspec
File metadata and controls
19 lines (17 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "DarkModeKit"
s.version = "0.4.0"
s.summary = "A library for backporting Dark Mode in iOS"
s.description = <<-DESC
DarkModeKit provides a mechanism to support dark mode for apps on iOS 11+ (including iOS 13).
DESC
s.homepage = "https://github.com/microsoft/DarkModeKit"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Microsoft Corporation"
s.source = { :git => "https://github.com/microsoft/DarkModeKit.git", :tag => s.version.to_s }
s.platform = :ios, '11.0'
s.requires_arc = true
s.frameworks = 'UIKit', 'Foundation'
s.swift_version = '5.0'
s.source_files = 'Sources/DarkModeCore/*.{h,m}', 'Sources/DarkModeKit/**/*.swift'
end