How to use ObjC in Swift Package Manager
Issue #575
Create Objc target
Check runtime
Check for example _runtime(_ObjC)
or os(macOS
if you plan to use platform specific feature …
Issue #575
Check for example _runtime(_ObjC)
or os(macOS
if you plan to use platform specific feature …
Issue #572
After migrating a few pods to use SPM, some libraries fail to load. This is because the workspace now uses both SPM and cocoapods
code signature in … not valid for use in process using Library Validation: mapped file has no Team ID …
Issue #525
Example Puma
Puma.xcodeproj
as a sub project of our test projectLink Binary with Libraries
, select Puma framework …Issue #523
In Puma I want to make build tools for iOS and Android, which should share some common infrastructure. So we can organize dependencies like.
Puma -> PumaAndroid, PumaiOS -> PumaCore -> xcbeautify, Files, Colorizer
// …
Issue #504
https://twitter.com/NeoNacho/status/1181245484867801088?s=20
There’s no way to have platform specific sources or targets today, so you’ll have to take a different approach. I would recommend wrapping all OS specific files in #if os and …