2

I have one curious beginner question. I have an react native project for ios and getting through the folders, but I don't understand what is folder Pods/Local Podspecs for?

  • What is it purpose?
  • how it is created (is it generated or I have to do it)
Babu
  • 4,324
  • 6
  • 41
  • 60
  • Read pod documentation[https://guides.cocoapods.org/making/specs-and-specs-repo.html ]. – Manav Jul 11 '21 at 22:24
  • good resource to study Specs, but there is noting about folder "Local Podspec" ... what is this exact folder for? ... how and when it is used, for which purpose? from where it come from? ... to understand me, I didn't write the project from scratch, I just came to already done so I have to reverse engineer it, and I didn't find answer in documentation ... – Babu Jul 12 '21 at 08:39
  • 1
    Does this answer your question? [What is a development pod?](https://stackoverflow.com/questions/59199431/what-is-a-development-pod) – Gereon Jul 12 '21 at 18:06
  • Local podsec and development Pods are different things. A Podspec describes a version of a Pod library. A pod can have different podspec over a period of time. – Manav Jul 13 '21 at 16:16

1 Answers1

1

A Podspec, or Spec, describes a version of a Pod library.

We can use a local path to a directory on your computer and write a Podspec in that directory and use CocoaPods. This is called local podsec.

Manav
  • 2,284
  • 1
  • 14
  • 27