Post

Replies

Boosts

Views

Activity

Reply to Internal error, NEHotspotConfigurationErrorDomain
Still looking for an update over here.... Anyone figure out a fix or workaround? I get stuck in this state when trying to connect using this code with the phone's wifi turned off (iOS 14.6)      let hotspotConfiguration = NEHotspotConfiguration(ssidPrefix: prefix, passphrase: pass, isWEP: false)     NEHotspotConfigurationManager.shared.apply(hotspotConfiguration) { error in       NSLog("NEHotspotConfigurationManager.shared.apply error: \(error).")       if let error = error {         result(FlutterError(code: "ERROR", message: "\(error.localizedDescription)", details: nil))       } else {         result("SUCCESS")       }     }
Sep ’21