The podspec points on the
__dir__variable.
This result in having a Podfile.lock that is different for every developer on the team.
The code for those SDK should be open-source so that we can contribute back some fixes.
Pod::Spec.new do |s|
s.name = "RNQualtricsDigital"
s.version = "0.0.1"
s.summary = "RNQualtricsDigital"
s.description = <<-DESC
RNQualtricsDigital
DESC
s.homepage = "https://api.qualtrics.com"
s.platform = :ios, "9.0"
s.source_files = "*.{h,m}"
s.requires_arc = true
s.dependency "Qualtrics"
s.source = { :http => 'file:' + __dir__ + '/RNQualtricsDigital.zip' }
s.author = "Qualtrics"
s.dependency "React"
end