I'm trying to install a Pod from the git repository with a branch.
Something like this:
pod 'ThePod', :git => 'https://gitlab.kz/company/mobile/ios-app.git', :branch => 'feature-branch'
✅ There is no problem if a .podspec file is located in the root of the repository.
⚠️ The problem is, that .podspec file is located inside the /src directory.
So, when I run pod install
, of course I get
[!] Unable to find a specification for 'ThePod'.
which is obvious.
Is there any chance to specify the path to a .podspec file while using the :git => configuration?