-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPodfile
34 lines (30 loc) · 1.16 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
platform :ios, '12.4'
use_frameworks!
target 'BaseKeyboard' do
pod 'Sentry', '=7.3.0'
pod 'DivvunSpell', :http => "https://github.com/divvun/divvunspell-sdk-swift/releases/download/v1.0.0-beta.4/cargo-pod.tgz"
pod 'SwiftLint'
pod 'SQLite.swift', '~> 0.12.0'
pod 'RxSwift', '~> 5.1.1'
end
target 'HostingApp' do
pod 'Sentry', '=7.3.0'
pod 'SwiftLint'
pod 'SQLite.swift', '~> 0.12.0'
pod 'PahkatClient', :http => "https://github.com/divvun/pahkat-client-sdk-swift/releases/download/v0.2.1/cargo-pod.tgz"
end
target 'HostingAppTests' do
pod 'SQLite.swift', '~> 0.12.0'
pod 'DivvunSpell', :http => "https://github.com/divvun/divvunspell-sdk-swift/releases/download/v1.0.0-beta.4/cargo-pod.tgz"
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = `uname -m`
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.4'
config.build_settings['ARCHS'] = '$(ARCHS_STANDARD_64_BIT)'
config.build_settings['SUPPORTS_MACCATALYST'] = 'NO'
end
end
end