-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
82 lines (72 loc) · 2.77 KB
/
Podfile
File metadata and controls
82 lines (72 loc) · 2.77 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
72
73
74
75
76
77
78
79
80
81
82
platform :ios, '11.0'
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
target 'AliceX' do
use_frameworks!
# pod 'web3.swift.pod', '~> 2.2.1'
# Fix release build problem
pod 'Web3swift.pod', git: 'https://github.com/matter-labs/web3swift', branch: 'master'
pod 'KeychainAccess'
pod 'SPStorkController', git: 'https://github.com/lmcmz/SPStorkController', branch: 'master'
pod 'SPLarkController'
pod 'IQKeyboardManagerSwift'
# pod 'HandyJSON', '~> 5.0.0'
pod 'HandyJSON', git: 'https://github.com/alibaba/HandyJSON.git' , branch: 'dev_for_swift5.0'
pod 'Moya', '~> 13.0'
pod 'SwiftEntryKit', '1.2.3'
pod 'MarqueeLabel'
pod 'Hero'
pod 'Kingfisher'
pod 'WalletConnectSwift', git: 'https://github.com/WalletConnect/WalletConnectSwift', branch: 'master'
pod 'HanekeSwift', git: 'https://github.com/Haneke/HanekeSwift', branch: 'master'
pod 'BonMot'
pod 'SwiftyUserDefaults', git: 'https://github.com/sunshinejr/SwiftyUserDefaults', branch: 'master'
pod 'TrustWalletCore', '~> 0.12.33'
pod 'VBFPopFlatButton'
pod "ViewAnimator"
# pod 'SVGKit'
# pod 'RxSwift', '~> 5'
# pod 'RxCocoa', '~> 5'
# pod 'lottie-ios'
pod "ESPullToRefresh"
pod 'JXSegmentedView', '~> 1.0.2'
pod 'FoldingCell'
pod 'Pageboy', '~> 3.5.0'
# pod 'AwaitKit'
#for push notifications
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'Fabric', '~> 1.10.2'
pod 'Crashlytics', '~> 3.14.0'
pod 'Firebase/Analytics'
# React Native Dependencies
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'DevSupport',
'RCTText',
'RCTGeolocation',
'RCTAnimation',
'RCTImage',
'RCTActionSheet',
'RCTNetwork',
'RCTWebSocket',
'RCTLinkingIOS'
]
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'
pod 'react-native-camera', path: '../node_modules/react-native-camera'
pod 'RNSVG', :path => '../node_modules/react-native-svg'
pod 'RNReactNativeHapticFeedback', :path => '../node_modules/react-native-haptic-feedback'
pod 'CodePush', :path => '../node_modules/react-native-code-push'
pod 'react-native-video/VideoCaching', :path => '../node_modules/react-native-video/react-native-video.podspec'
pod 'RNFirebase', :path => '../node_modules/react-native-firebase/ios'
pod 'ReactNativeExceptionHandler', :podspec => '../node_modules/react-native-exception-handler/ReactNativeExceptionHandler.podspec'
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end