forked from RedrockMobile/CyxbsMobile_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
71 lines (55 loc) · 1.7 KB
/
Podfile
File metadata and controls
71 lines (55 loc) · 1.7 KB
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
62
63
64
65
66
67
68
69
70
71
source 'https://github.com/CocoaPods/specs'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
source 'https://github.com/aliyun/aliyun-specs.git'
platform :ios, '13.0'
use_frameworks!
inhibit_all_warnings!
pod 'Alamofire'
pod 'SwiftyJSON'
target 'CyxbsMobile2019_iOS' do
# pod 'TZImagePickerController'
# pod 'YBImageBrowser'
# pod 'IQKeyboardManager'
pod 'SDWebImage'
pod 'ProgressHUD'
pod 'MJRefresh'
pod 'MarkdownKit'
pod 'TagListView'
pod 'UMCommon'
pod 'UMDevice'
pod 'UMVerify'
pod 'UMCCommonLog', :configurations => ['Debug']
pod 'UMShare/Social/WeChat'
pod 'UMShare/Social/QQ'
pod 'JXBanner'
pod 'JXSegmentedView'
pod 'JXPagingView'
pod 'JXPageControl'
# pod 'SwifterSwift/SwiftStdlib'
# pod 'SwifterSwift/Foundation'
# pod 'SwifterSwift/UIKit'
pod 'Bugly'
pod 'LookinServer', :configurations => ['Debug']
pod 'AlicloudHTTPDNS'
pod 'AlicloudUtils'
pod 'RYTransitioningDelegateSwift'
pod 'RYAngelWalker'
end
target 'CyxbsWidgetExtension' do
end
post_install do |installer|
installer.pods_project.targets.each do |target|
puts "target #{target}"
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['HEADER_SEARCH_PATHS'] = '$(PROJECT_DIR)/**'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
if target == 'Pods-CyxbsMobile2019_iOS'
config.build_settings['VALID_ARCHS'] = 'x86_64'
end
end
end
end