ThanosFisherman / WifiUtils

Easily Connect to WiFi Networks
Apache License 2.0
731 stars 188 forks source link

sample: make SSID & password editable #101

Closed z3ntu closed 3 years ago

z3ntu commented 3 years ago

Description

Remove the hardcoded SSID and password from the sample application and replace them with an EditText so the user can enter it at runtime.

If a user still wants to hardcode the credentials, they can add this to onCreate:

textview_ssid.text = "foo"
textview_password.text = "bar"
ThanosFisherman commented 3 years ago

thanks for the addition