I have an app that holds two libray installed with cocoapods, Braintree and GoogleAnalytics. What i wanna do is remove Braintree from my project. This is my Podfile in the root of my project:
# Uncomment this line to define a global platform for your project
# platform :ios, '7.0'
target 'MyApp' do
pod 'Braintree'
pod 'Google/Analytics'
end
target 'MyAppTests' do
pod 'Braintree'
end
I have tried this solution , but maybe i do something wrong. My steps are: Open terminal -> go to root directory of my project -> $ pod update. This returns to me "pod update command not found". What's wrong or what are the correct steps to remove the Braintree library?