Hi,
I have a problem of tests hangs indefinitely when my SPM library depend on objc based Framework, no problem in building the target and if i remove the "BlueStackSDK" dependency the tests passe.
Here is my package.swift file :
import PackageDescription
let package = Package(
name: "MyLibrary",
platforms: [
.iOS(.v16)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "AdsClient",
targets: ["AdsClient"]),
],
dependencies: [
.package(url: "https://github.com/azerion/BlueStackSDK", exact: "4.2.7"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "AdsClient",
dependencies: [
"BlueStackSDK"
],
linkerSettings: [.unsafeFlags(["-ObjC"])]
),
.testTarget(
name: "AdsClientTests",
dependencies: ["AdsClient"]),
]
)
i missed some things in the config ?
Many thanks.
1 post - 1 participant