Aishwarya
Aishwarya

Reputation: 1087

pod install is installing in different folder

I have a pod file like:

platform :ios, '9.0'

target 'Project' do

  pod 'AppAuth', '>= 0.94'

  pod 'RNAWSCognito', :path => '../node_modules/amazon-cognito-identity-js'

  pod 'react-native-sqlite-storage', :path => '../node_modules/react-native-sqlite-storage'

end

I did pod install , but some of the pods are installing directly to my Target Support File folder within Pods folder.

directory

So when I try using these pods it gave error:

errer enter image description here

Upvotes: 1

Views: 1277

Answers (1)

R1'
R1'

Reputation: 639

Try this : pod install --project-directory=/path/to/root/with/Podfile

Upvotes: 2

Related Questions