-
Notifications
You must be signed in to change notification settings - Fork 39
/
Podfile
51 lines (43 loc) · 1.48 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
platform :ios, '15'
def shared_pods
pod 'MaterialComponents/BottomSheet'
pod 'MaterialComponents/TextControls+FilledTextAreas'
pod 'MaterialComponents/TextControls+FilledTextFields'
pod 'MaterialComponents/TextControls+OutlinedTextAreas'
pod 'MaterialComponents/TextControls+OutlinedTextFields'
pod 'MaterialComponents/AppBar'
pod 'MaterialComponents/Tabs+TabBarView'
pod 'MaterialComponents/Typography'
pod 'MaterialComponents/Buttons'
pod 'JJFloatingActionButton'
# pod 'WalletConnectSwiftV2', '1.9.1'
# pod 'Toast-Swift', '~> 4.0.0'
# pod 'Floaty', '~> 4.1.0'
# pod 'QRCode'
# pod 'HPParallaxHeader'
# pod 'IpfsApi'
# replace keychainAccess with V2
pod 'SwiftKeychainWrapper'
end
target 'Cosmostation' do
shared_pods
end
target 'CosmostationDev' do
shared_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15'
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
end