David Harris
David Harris
``` prebuilt_cxx_library( name = 'ADBMobile', static_lib = 'AdobeMobileLibrary/AdobeMobileLibrary.a', preferred_linkage = 'static', header_dirs = [ 'AdobeMobileLibrary' ], visibility = [ 'PUBLIC' ] ) ``` seemed to work for us back a...
Just https://github.com/airbnb/BuckSample/blob/0a4a4d2919b05ba74da4791def260174556a06c0/Libraries/SwiftWithPrecompiledDependency/Sources/SwiftWithPrecompiledDependencyClass.swift, if there's probably an easier lib that could get used without dipping into networking to check things are working
I just never got around to setting up a precompiled pod to get this going. If you've got a good example, it should be pretty straightforward to replace the Carthage...
@dfed you can put it back :D
> Edit: I just checked what the CI error was. If I recall Xcode 11 had trouble encoding top-level objects. Instead of encoding an `Array` directly, instead make a type...
I was working through this a bit. Some of these issues are workable, some will take some bigger rethinking. The `os.signpost` issue is just for logging, so wrapping all those...
Will probably take you up on that @mxcl! I'm familiar with Circle, not terribly difficult to spin up a Linux job using the Swift Docker image on it. We've got...
Poked around a bit more, last remaining thing looks like finding a replacement for NSPropertyListSerialization that will work on Linux since `PropertyListSerialization` doesn't seem to port to Linux yet.
The macros around logging are fine, some stuff around a String/CVarArgs thing (not sure if this was ever fixed on Linux) but probably can be fixed with an overload. Copying...
Unfortunately it's the changes in this guy: https://github.com/tuist/xcodeproj/pull/365/files#diff-acb4ac63a93e60e6a26182f29ed8c02cR84 that are making this more difficult. Was able to cover all the other errors here: https://github.com/thedavidharris/xcodeproj/commit/0251a7837727bf231ee5277b861316a36f3b2ef7. Tests still pass, although I need...