You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello , I am trying to connect a specific SSID when I open my app. But it stuck at temporary connection. So I cannot transfer data over it.
When I open my app it ask the following question.
I accept this and and it says connected. But when I look to WiFi settings from my phone, it look like the following pic.
When I click to actual one, It connect to actual one and temporary WiFi disaperar.
Has anyone experienced such a problem? Or can anyone help?
I tried many variantions of code but at the end , still same error.
I am testing with Android 14
I'm also having similar issue. Initially I'll connect to my IOT device within the app. After few minutes my WiFiIOT device will stop emiting wifi connection. In that time my device not automatically switching to previous saved connection
I'm using flutter 3.22.3 dart 3.4.4
Note: this issue not working on the following devices
If I understand correctly, you already connect automatically (when you open the app, not from settings) . Unfortunately, the connection is not completed in our case. There is only a temporary connection. In this case, I cannot transfer data.
Hello , I am trying to connect a specific SSID when I open my app. But it stuck at temporary connection. So I cannot transfer data over it.


When I open my app it ask the following question.
I accept this and and it says connected. But when I look to WiFi settings from my phone, it look like the following pic.
When I click to actual one, It connect to actual one and temporary WiFi disaperar.
Has anyone experienced such a problem? Or can anyone help?
I tried many variantions of code but at the end , still same error.
I am testing with Android 14
Thanks everyone.
My code like this:
`
void _connectToWiFi() async {
await WiFiForIoTPlugin.disconnect();
bool isConnected = await WiFiForIoTPlugin.connect(
ssid,
password: password,
joinOnce: true,
withInternet: false,
security: NetworkSecurity.WPA,
);
final res = await WiFiForIoTPlugin.forceWifiUsage(true);
}
@OverRide
Widget build(BuildContext context) {
return Center(
child: Text("Connecting to WiFi..."),
);
}
}
`
The text was updated successfully, but these errors were encountered: