David Harris
David Harris
The deadline for submitting this with the iOS 13 SDK is June 30th (see https://developer.apple.com/news/?id=03262020b), so I think that would make supporting Xcode 10.x unnecessary? That would be a better...
@jdhealy Agreed, but given Carthage uploads binaries as part of releases I think it would be fair to expect them to manually install a working version and have the info...
That didn't work either. ``` action 'Writing file RxCocoa.output_file_map.json' Mnemonic: FileWrite Target: //:RxCocoa Configuration: darwin-fastbuild ActionKey: dd0fcfb69431d43449cda1e979275b96 Inputs: [] Outputs: [bazel-out/darwin-fastbuild/bin/RxCocoa.output_file_map.json] action 'Writing file RxCocoa.modulemaps/module.modulemap' Mnemonic: FileWrite Target: //:RxCocoa Configuration:...
> I'd recommend wrapping these targets into an `ios_application` target that will take care of everything for you, and only building that. Tried that and... totally different set of errors...
> That looks like an issue with how the targets are set up, and something outside my area of expertise, but at least there are no duplicate interfaces any more...
So, found a different way to build this (just following Podspec defs and forgetting the objc_library altogether) so going to close, although the objc_library -> swift_library conversion is a bit...
Here's the final resolution: ``` ios_static_framework( name = "RxCocoaStaticFramework", deps = [":RxCocoa"], minimum_os_version = "11.0" ) swift_library( name = "RxCocoa", module_name = "RxCocoa", srcs = glob([ carthage_path + "RxSwift/" +...
Had some other devs take a look and this seems to work? I'm not quite sure what's different but @esam091 if you give it a try, might do the trick...
Example of how Google Maps does this with a dummy target: https://github.com/googlemaps/ios-maps-sdk/blob/main/Package.swift#L39.
@fortmarek absolutely, coming back to this today @freak4pc can you confirm which of your dependencies are running into this and see if any of the other resolutions mentioned in https://github.com/tuist/tuist/issues/6243...