-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
44 lines (33 loc) · 1.24 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
platform :ios, '14.0'
target 'material-carthage-ios' do
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
# Remove `MaterialIcons_ic_arrow_back` resource bundle from `MaterialComponents`
if target.name == 'MaterialComponents'
target.dependencies.reject! do |target|
target.name == "MaterialComponents-MaterialIcons_ic_arrow_back"
end
target.build_phases.each do |build_phases|
build_phases.files.reject! do |file|
file.display_name == "MaterialComponents-MaterialIcons_ic_arrow_back"
end
end
end
end
end
use_frameworks!
pod 'MaterialComponents/ActivityIndicator'
pod 'MaterialComponents/AppBar'
pod 'MaterialComponents/FlexibleHeader'
pod 'MaterialComponents/FlexibleHeader+CanAlwaysExpandToMaximumHeight'
pod 'MaterialComponents/TextControls+FilledTextAreas'
pod 'MaterialComponents/TextControls+FilledTextFields'
pod 'MaterialComponents/Snackbar'
target 'material-carthage-iosTests' do
inherit! :search_paths
end
end