Hello, when I use xcode 16 build swift xcframeworks and provide it for my customer, however they can not use it their xcode 15 projects.
Undefined symbol: _swift_FORCE_LOAD$_swift_Builtin_float
Undefined symbol: _+ _swift_FORCE_LOAD$_swift_errno
Undefined symbol: _+ _swift_FORCE_LOAD$_swift_math
Undefined symbol: _+ _swift_FORCE_LOAD$_swift_signal
Undefined symbol: _+ _swift_FORCE_LOAD$_swift_stdio
Undefined symbol: _+ _swift_FORCE_LOAD$_swift_time
Undefined symbol: _+ _swift_FORCE_LOAD$_swiftsys_time
Undefined symbol: _+ _swift_FORCE_LOAD$_swiftunistd
What should I do?
And macOS Sequoia does not support Xcode 15.4. I can not build my frameworks with Xcode 15.4 now.
Post
Replies
Boosts
Views
Activity
let hotspotConfig = NEHotspotConfiguration(ssid: "SSID", passphrase: "PASSWORD", isWEP: false)
hotspotConfig.hidden = true
let hotspotMgr = NEHotspotConfigurationManager.shared
hotspotMgr.apply(hotspotConfig) { error in
}
This works on the watchos before, but does not work on the latest watchos 10.2, if given incorrect password, the error returns .invalidWPAPassphrase, it's right. However, when given the correct password, the error returns .unknown and no wifi connect request alert shows on the watch.
The code works ok on the iPhone, but not works on the watchos.