The problem that I'm facing is that I have a Passpoint configured, but the system seems to not connect to that Passpoint.
[...]
final WifiNetworkSuggestion.Builder builder = new WifiNetworkSuggestion.Builder();
builder.setIsAppInteractionRequired(true);
PasspointConfiguration passpointConfiguration = createPasspointConfiguration(managedNetwork.getSsid());
builder.setPasspointConfig(passpointConfiguration);
suggestionsList.add(builder.build());
wifiManager.addNetworkSuggestions(suggestionsList);
I think there is something that I'm missing, because the suggestion is added successfully, but the system is not trying to connect to it.