jordanebelanger / SwiftyBluetooth

Closures based APIs for CoreBluetooth
MIT License
209 stars 66 forks source link

Xcode 13.1, v3.0.0 unhandled file warning #51

Closed roberthartman closed 2 years ago

roberthartman commented 2 years ago

After updating to Xcode 13.1 and SwiftBluetooth 3.0.0, included via Swift Package Manager, I now see the following warning: image

found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/rob.hartman/Library/Developer/Xcode/DerivedData/iOS_Example-cvpcvvkpubwmmuebviedncjenzcp/SourcePackages/checkouts/SwiftyBluetooth/Sources/Info.plist

One solution might be to modify Package.swift targets array, exluding that file:

        .target(name: "SwiftyBluetooth", path: "Sources", exclude: [Sources/Info.plist"])
    ]
jordanebelanger commented 2 years ago

@roberthartman Should be fixed in https://github.com/jordanebelanger/SwiftyBluetooth/releases/tag/3.0.1 thanks for reporting 👍

roberthartman commented 2 years ago

Thanks for the library!