[ad_1]
I am making an attempt to put in TagLibIOS, however it’s not working after updating to Xcode 13 as a result of it makes use of modulemap. Under is the package deal.swift file I attempted to create, I am new to swift/Xcode, any assist might be appreciated.
package deal.swift
// swift-tools-version:5.3
import PackageDescription
let package deal = Package deal(
identify: "TagLibIOS",
defaultLocalization: "en",
merchandise: [
.library(
name: "TagLibIOS",
targets: ["TagLibIOS"]
)
],
dependencies: [],
targets: [
.target(
name: "TagLibIOS",
dependencies: [],
path: "./TagLibIOS",
exclude: ["Info.plist"]
),
.testTarget(
identify: "TagLibIOSTests",
dependencies: ["TagLibIOS"],
path: "./Instance/TagLibIOS",
exclude: ["Info.plist"]
// assets: [.process("./TagLibIOS/Classes/taglib")]
)
],
swiftLanguageVersions: [.v5]
)
[ad_2]

