-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
71 lines (51 loc) · 1.71 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
62
63
64
65
66
67
68
69
70
71
# Uncomment the next line to define a global platform for your project
platform :ios, '15.0'
target 'MelodyMusic' do
use_frameworks!
#https://github.com/youngsoft/TangramKit
pod 'TangramKit'
#https://github.com/mac-cain13/R.swift
pod 'R.swift'
#https://github.com/yannickl/DynamicColor
pod "DynamicColor"
#https:https://github.com/QMUI/QMUIDemo_iOS
#https://qmuiteam.com/ios/get-started
pod "QMUIKit"
#https://github.com/SDWebImage/SDWebImage
pod 'SDWebImage'
# #https:https://github.com/Moya/Moya
# pod 'Moya'
# https:https://github.com/Moya/Moya
pod 'Moya/RxSwift'
#https:https://github.com/RxSwiftCommunity/NSObject-Rx
pod "NSObject+Rx"
# https:https://github.com/alibaba/HandyJSON
pod "HandyJSON"
#https:https://github.com/jdg/MBProgressHUD
pod 'MBProgressHUD'
#https:https://github.com/onevcat/Kingfisher
pod "Kingfisher"
#https://github.com/SwifterSwift/SwifterSwift
pod 'SwifterSwift'
# https:https://github.com/cesarferreira/SwiftEventBus
pod "SwiftEventBus"
#https:https://github.com/CoderMJLee/MJRefresh
pod 'MJRefresh'
#https:https://github.com/a1049145827/BSText
#OC版本:https:https://github.com/ibireme/YYText
pod "BSText"
#腾讯开源的偏好存储框架
#https://github.com/Tencent/MMKV
pod 'MMKV'
#https:https://github.com/feaskters/MHVerifyCodeView
pod 'MHVerifyCodeView'
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end
end
end