Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

maybe someone can help me.

I want to connect to an access point and do an httpRquest. My code worked until last week. I did an update for my phone. I have android 10. This is my code:


                WifiNetworkSpecifier.Builder builder = new WifiNetworkSpecifier.Builder();
                builder.setSsid(accessPoint);
                builder.setWpa2Passphrase(PASSWORD);
                WifiNetworkSpecifier wifiNetworkSpecifier = builder.build();
                NetworkRequest.Builder networkbuilder = new NetworkRequest.Builder();

                networkbuilder.addTransportType(NetworkCapabilities.TRANSPORT_WIFI);
                networkbuilder.setNetworkSpecifier(wifiNetworkSpecifier);

                NetworkRequest nr = networkbuilder.build();

                cm.requestNetwork(nr, callback);`

When Android has done the requestNetwork Method it gets NO NetworkCallback and the phone shows: No devices found. Make sure that the device is on and available.

Can please someone help me out?

Thank you in advance!

question from:https://stackoverflow.com/questions/65936203/connect-to-an-access-point-on-android-10-without-internet

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...