Tomas Camin
Tomas Camin
The missing `productName` key is only in the aggregateTargets that were added to the Pods.xcodeproj/project.pbxproj by CocoaPods 1.6. Our project's pbxproj contains targets with `productName` and `name` and everything seems...
Just a quick update: I've been taking a look at the compilation issues and found a way to make things work. I hope to be able to share something next...
I've pushed the changes to the`hotfix/rn_68` branch. You can try the update as follows: ``` git clone -b hotfix/rn_68 https://github.com/Subito-it/PodBuilder.git cd PodBuilder sudo rake install ``` Out of curiosity I...
When you invoke `pod_builder build Alamofire` you are explicitly requesting to rebuild Alamofire which will rebuild latest version because it works as `pod update` does. My suggestion is to keep...
Sorry for the late answer, I believe the changes for #61 should work for react native projects as well.
Can you share your Podfile? `Pod::DSLError` generally indicates that the Podfile syntax is wrong
Hi, instead of setting `"BUILD_LIBRARY_FOR_DISTRIBUTION": "YES"` you should set `"library_evolution_support": true` (see https://github.com/Subito-it/PodBuilder#library_evolution_support). In general however I would advise to set `"build_xcframeworks_all": true` (which implies library evo support) which will...
You should be able to patch the switfinterface files by adding this to your Podfile ``` post_install do |installer| swift_interface_paths = Dir.glob("./PodBuilder/Prebuilt/RealmSwift/**/*.swiftinterface") swift_interface_paths.each do |path| content = File.read(path) content.gsub!("Realm.RLM", "RLM")...
Awesome, thanks! Could you add a test for the upload method [here](https://github.com/Subito-it/SBTUITestTunnel/blob/master/Example/SBTUITestTunnel_Tests/DownloadUploadTests.swift)?
Sorry for the late reply. Can anyone share a sample project (either CocoaPods or SPM) that replicates the issue? As @gomera commented staring with a blank project everything seems to...