-
Notifications
You must be signed in to change notification settings - Fork 2
/
ApplicationDelegate.podspec
45 lines (43 loc) · 2.03 KB
/
ApplicationDelegate.podspec
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Be sure to run `pod lib lint ApplicationDelegate.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "ApplicationDelegate"
s.version = "0.6.0"
s.description = <<-DESC
Sort description of 'ApplicationDelegate' framework
DESC
s.summary = "Sort description of 'ApplicationDelegate' framework"
s.homepage = "https://github.com/amine2233/ApplicationDelegate"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Amine Bensalah' => '[email protected]' }
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.visionos.deployment_target = '1.0'
s.source = { :git => "https://github.com/amine2233/ApplicationDelegate.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.swift_version = '5.4'
s.module_name = s.name
s.ios.exclude_files = "Sources/ApplicationDelegate/AppKit", "Sources/ApplicationDelegate/WatchKit"
s.osx.exclude_files = "Sources/ApplicationDelegate/UIKit", "Sources/ApplicationDelegate/WatchKit"
s.tvos.exclude_files = "Sources/ApplicationDelegate/AppKit", "Sources/ApplicationDelegate/WatchKit"
s.watchos.exclude_files = "Sources/ApplicationDelegate/AppKit", "Sources/ApplicationDelegate/UIKit"
# AppKit Extensions
s.subspec 'AppKit' do |sp|
sp.source_files = 'Sources/ApplicationDelegate/AppKit/*.swift'
end
# UIKit Extensions
s.subspec 'UIKit' do |sp|
sp.source_files = 'Sources/ApplicationDelegate/UIKit/*.swift'
end
# WatchKit Extensions
s.subspec 'WatchKit' do |sp|
sp.source_files = 'Sources/ApplicationDelegate/WatchKit/*.swift'
end
end