Home > database >  pod install error>>> [!] Unable to determine the platform for the `AdewoleFarmApp` target
pod install error>>> [!] Unable to determine the platform for the `AdewoleFarmApp` target

Time:11-07

I downloaded github amplify.swift, created Podfile per installation instruction, but Cocoapods "pod install" gets the error.

Podfile is:

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'AdewoleFarmApp' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for AdewoleFarmApp
    pod 'Amplify'
    pod 'AmplifyPlugins/AWSCognitoAuthPlugin'
    pod 'AWSPredictionsPlugin'
    pod 'CoreMLPredictionsPlugin'

end

and below is the error i was getting when i ran pod install: my Pod Error

CodePudding user response:

Try uncommenting (remove the #) the second line of the podfile. I guess the platform declaration is not working since it is commented out

  • Related