This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
podfile
64 lines (58 loc) · 1.37 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
platform:ios,'9.0'
inhibit_all_warnings!
source 'https://cdn.cocoapods.org/'
def swiftUI
pod 'Alamofire'
pod 'SwiftyJSON'
pod 'HandyJSON'
#pod 'SwiftLint'
pod 'Kingfisher'
pod 'SnapKit', '~> 4.0.0'
pod "CollectionKit"
pod 'SwiftyStoreKit'
pod 'SwiftMessages'
pod 'TagListView'
pod 'SQLite.swift'
pod 'RxCocoa'
pod 'Moya'
#pod 'MJRefresh'
pod 'JXPhotoBrowser', '~> 2.1.5'
#pod 'EachNavigationBar_Objc'
#pod 'ProgressHUD'
# pod "SkeletonView"
end
def debug
pod 'Reveal-SDK', '~> 19', :configurations => ['Debug']
end
def analyze
pod 'Firebase/Analytics'
pod 'Firebase/Performance'
pod 'Fabric', '~> 1.10.2'
pod 'Crashlytics', '~> 3.14.0'
end
def ocpod
pod 'ASIHTTPRequest'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'DJRefresh', '~> 1.0.5'
pod 'UMengUShare/Social/ReducedSina'
pod 'UMengUShare/Social/ReducedWeChat'
pod 'UMengUShare/Social/ReducedQQ'
pod 'UMengUShare/UI'
pod 'AFNetworking', '~> 3.1.0'
# pod 'MJRefresh'
pod 'SDWebImage', '~>3.8'
pod 'LGPlusButtonsView', '~> 1.1.0'
# pod 'TZImagePickerController'
# pod 'DTKDropdownMenu', '~> 0.0.4'
pod 'YCXMenu', '~> 0.0.11'
pod 'UITableView+FDTemplateLayoutCell'
pod 'DZNEmptyDataSet'
pod 'Masonry'
pod 'HUPhotoBrowser'
end
target "HutHelper" do
swiftUI
debug
ocpod
analyze
end