[memo] pod install
step.1 vi Podfile in your App project
found out your Project Deployment Target version = here is 11.3
step.2 add content to Podfile
make sure platform:ios version as same as xcode’s Deployment Target = 11.3
# Uncomment the next line to define a global platform for your project
source ‘https://github.com/CocoaPods/Specs.git'
platform :ios, ‘11.3’
target ‘TestPod’ do
# Uncomment the next line if you’re using Swift or would like to use dynamic frameworks
use_frameworks!
# Pods for MAPP_CCFAPP_CUST
pod ‘AFNetworking’, ‘3.2.0’
pod ‘MBProgressHUD’, ‘1.0.0’
pod ‘MJExtension’, ‘3.0.13’
pod ‘IQKeyboardManager’, ‘5.0.8’
pod ‘ActionSheetPicker-3.0’, ‘2.3.0’
pod ‘YYImage’, ‘1.0.4’
pod ‘GoogleMaps’, ‘2.6.0’
pod ‘GooglePlaces’, ‘2.6.0’
end
step.3
pod install
step.3–2
if get error message
https://github.com/CocoaPods/CocoaPods/issues/7712
solution:sudo gem update xcodeproj
now you can type pod install
step.4
open App with .xcworkspace