forked from trinhngocthuyen/cocoapods-spm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
61 lines (51 loc) · 1.79 KB
/
Podfile
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
platform :ios, "16.0"
linkage = (ENV["LINKAGE"] || :static).to_sym
use_frameworks! :linkage => linkage
puts "Using linkage: #{linkage}"
@checksum = "dummy-checksum-to-prevent-merge-conflicts"
plugin "cocoapods-spm"
plugin "cocoapods-xcconfig-hooks"
config_compact_spec(
extra: ->(s) { s.ios.deployment_target = "16.0" }
)
config_cocoapods_spm(
dont_prebuild_macros: true,
default_macro_config: "debug"
)
target "EX" do
pod "Logger", :path => "LocalPods/Logger"
pod "CommonUI", :path => "LocalPods/CommonUI"
pod "Services", :path => "LocalPods/Services"
pod "Orcam", :macro => {
:git => "https://github.com/trinhngocthuyen/orcam.git",
:branch => "main"
}
pod "MacroCodableKit", :macro => {
:git => "https://github.com/mikhailmaslo/macro-codable-kit",
:tag => "0.3.0"
}
spm_pkg "SnapKit",
:url => "https://github.com/SnapKit/SnapKit.git",
:version => "5.7.1",
:products => ["SnapKit-Dynamic"]
spm_pkg "SwiftUIX", :git => "https://github.com/SwiftUIX/SwiftUIX.git", :tag => "0.1.9"
spm_pkg "SwiftyBeaver", :git => "https://github.com/SwiftyBeaver/SwiftyBeaver.git", :tag => "2.0.0"
spm_pkg "opentelemetry-swift",
:git => "https://github.com/open-telemetry/opentelemetry-swift.git",
:branch => "main",
:products => ["OpenTelemetrySdk"]
spm_pkg "GoogleMaps",
:git => "https://github.com/googlemaps/ios-maps-sdk.git",
:version => "8.4.0",
:products => ["GoogleMaps", "GoogleMapsBase", "GoogleMapsCore"]
spm_pkg "DebugKit", :path => "LocalPackages/debug-kit"
end
target "EXTests" do
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete "IPHONEOS_DEPLOYMENT_TARGET"
end
end
end