-
Notifications
You must be signed in to change notification settings - Fork 9
/
Podfile
70 lines (64 loc) · 3.32 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
platform :ios, '13.1'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
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
require './Pods/YCSymbolTracker/YCSymbolTracker/symbol_tracker.rb'
symbol_tracker(installer)
end
end
#添加此处是因为harbeth库无法添加
pre_install do |installer|
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end
target 'PTChatGPT' do
pod 'FLEX', :configurations => ['Debug']
pod 'InAppViewDebugger', :configurations => ['Debug']
pod 'LookinServer', :configurations => ['Debug']
pod 'LifetimeTracker', :configurations => ['Debug']
pod 'WoodPeckeriOS', :configurations => ['Debug']
pod 'Bugly'
pod "HyperioniOS/Core", :configurations => ['Debug']
pod 'HyperioniOS/AttributesInspector', :configurations => ['Debug'] # Optional plugin
pod 'HyperioniOS/Measurements', :configurations => ['Debug'] # Optional plugin
pod 'HyperioniOS/SlowAnimations', :configurations => ['Debug'] # Optional plugin
pod 'YCSymbolTracker'
pod 'PooTools/Core', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/Picker', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/ColorPicker', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/PhotoPicker', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/MediaViewer', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/Slider', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/Instructions', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/CheckUpdate', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/PagingControl', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/Input', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/ZipArchive', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/GCDWebServer', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/DEBUG', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/ListEmptyData', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/FloatingPanel', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/NetWork', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/SwipeCell', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/NotificationBanner', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/NavBarController', :git => 'https://github.com/crazypoo/PTools.git'
pod 'PooTools/OSSKitSpeech', :git => 'https://github.com/crazypoo/PTools.git'
pod 'WhatsNew'
pod 'TensorFlowLiteSwift', '~> 2.3.0', :subspecs => ['Metal']
pod 'SwiftSpinner'
pod 'KDCircularProgress'
# https://github.com/dmrschmidt/DSWaveformImage
pod 'SwiftLint'
pod 'Swinject'
# pod 'Brightroom/Engine'
# pod 'Brightroom/UI-Classic'
# pod 'Brightroom/UI-Crop'
end