NEHotspotConfigurationErrorDomain Code=8 “internal error.”

I have this function :


@available(iOS 11.0, *)

func reconnect() {

let manager = NEHotspotConfigurationManager.shared

let ssid = CameraManager.camera.uuid

let password = "password"

let isWEP = false

let hotspotConfiguration = NEHotspotConfiguration(ssid: ssid, passphrase: password, isWEP: isWEP)

hotspotConfiguration.joinOnce = true

manager.apply(hotspotConfiguration) { (error) in

if (error != nil) {

print("error from hotspot is:\(error?.localizedDescription)")

}

if error == nil || (error?.localizedDescription.elementsEqual("already associated."))! {

DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {

self.startSession()

}

}

}

}


After some times i get the error above : NEHotspotConfigurationErrorDomain Code=8 “internal error.” , the only thins that fixes this issue it restarting the iPhone.
thanks

the only [thing] that fixes this issue it restarting the iPhone.

That sounds like the problem being discussed on this thread.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"
NEHotspotConfigurationErrorDomain Code=8 “internal error.”
 
 
Q