0

So I'm trying to install the Appsee 2.5.0 because we want to install the "wireframe only" version.

So I go into the pods and added:

pod 'Appsee', '~> 2.5.0'

But when I run pod install or pod update it install the 2.5.1 version.

Why I need the 2.5.0? I don't want the video recording, I just want the wireframe feature.

RodolfoAntonici
  • 1,555
  • 21
  • 34

1 Answers1

3

You got 2.5.1 because the ~> means "the latest version from 2.5.0, but less than 2.6.0". If you want a specific version, or don't need 2.5.x, then you can specify an exact version by dropping the ~>.

pod 'Appsee', '2.5.0'

You can read more about semantics of versioning in CocoaPods documentation

ManWithBear
  • 2,787
  • 15
  • 27
NRitH
  • 13,441
  • 4
  • 41
  • 44