[memo] pod install

Jameskrauser Lee
2 min readApr 12, 2018

--

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

--

--

Jameskrauser Lee
Jameskrauser Lee

Written by Jameskrauser Lee

For the last few years. i was involved mostly in the development of Automatic Fare collection system for the Chennai Metro. Familiar with C++ and iOS.

Responses (1)