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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
inhibit_all_warnings!
use_frameworks!
def tapTalk_pods
pod 'AFNetworking', '~> 4.0.0'
pod 'SocketRocket'
pod 'JSONModel', '~> 1.1'
pod 'Realm', '10.1.0'
pod 'PodAsset'
pod 'SDWebImage'
pod 'GooglePlaces'
pod 'GoogleMaps'
pod 'ZSWTappableLabel', '~> 2.0'
end
target "TapTalk" do
tapTalk_pods
end
#libwebp framework is currently doesn't support bitcode, must disable all bitcode for project, please check it gradually and remove below line to enable bitcode once libwebp have support bitcode
#post_install do |installer|
# installer.pods_project.targets.each do |target|
# target.build_configurations.each do |config|
# config.build_settings['ENABLE_BITCODE'] = 'NO'
# config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
# end
# end
#end
#add to remove arm64 because xcode 12 problems in realm
#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['EXCLUDED_ARCHS[sdk=watchsimulator*]'] = 'arm64'
# config.build_settings['EXCLUDED_ARCHS[sdk=appletvsimulator*]'] = 'arm64'
#
# end
# end
# end