Hi everyone,
We’re working with a T10 device and we’re trying to find a way to retrieve the list of Wi-Fi SSIDs saved on the device through the SDK.
Our goal is to avoid calling setWifiConfiguration() unnecessarily, since we noticed that using it restarts the Wi-Fi interface, causing temporary connectivity loss.
Ideally, we would like to:
Example use case:
List<String> savedSSIDs = getSavedSSIDs();
if (!savedSSIDs.contains("MyNetwork")) {
setWifiConfiguration(...);
}
We understand that Android does not expose saved networks by default due to security restrictions. So we’d like to know:
Is there any SDK method (or T10-specific API) that allows listing saved SSIDs?
Is there a reliable workaround to check if a specific network is already configured?
Are special permissions required (e.g., system privileges, root access, or system app signature)?
Any help or insight would be highly appreciated!
Thanks in advance!