ptsiogas
03/21/2021, 1:38 PMspec.source = { :git => "Not Published", :tag => "Cocoapods/#{spec.name}/#{spec.version}" }
This works fine locally but I want to change it to something like:
spec.source = { :git => 'git@my_path.git', :tag => s.version.to_s}
P.S Ideally I would like to use 2 repositories (Android + KMM, iOS) and feed the iOS app with a KMM cocoa pod.Kris Wong
03/22/2021, 1:36 PMptsiogas
03/22/2021, 1:39 PMKris Wong
03/22/2021, 1:40 PMptsiogas
03/22/2021, 1:42 PMspec.source = { :git => 'git@my_path.git', :tag => s.version.to_s}
In native.cocoapods the podspec is autogenerated, so we cannot change it manually, at least that’s my understanding, correct me if I am wrong.Kris Wong
03/22/2021, 2:01 PMptsiogas
03/22/2021, 2:45 PMKris Wong
03/22/2021, 3:05 PM