I'm new to flutter, so sorry about the basic question, I just couldn't find the answer through searching.
In the flutter project, in the pubspec.yaml file there are dependancies. For example, I am using:
firebase_auth: ^0.18.3
cloud_firestore: ^0.14.3
Now, coming from ios development, I used to add into my podfile these:
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
Now, in flutter, is it enough to add them as dependancies in the pubspec.yaml, without adding them in the podfile. I am confused, because I have read in some tutorials you need to add things to the pod file, and then run pod install. So when do you need the pods, and when can you rely on the pubspec.
The same question applies to the the android build.grade dependancies.
Thanks