android-wisefy
android-wisefy copied to clipboard
Long connection to Access Point
Contact Details
Decrease time connection to AP
Hi Wisefy Team!
I have a question about connection to existing AP.
Im using this API
Wisefy.Brains(this).getSmarts().addNetwork(
AddNetworkRequest.WPA2("SomeNetwork", "somePassword"),
object : AddNetworkCallbacks {
override fun onFailureAddingNetwork(result: AddNetworkResult.Failure) {
println("onFailureAddingNetwork - $result")
}
override fun onSuccessAddingNetwork(result: AddNetworkResult.Success) {
println("onSuccessAddingNetwork - $result")
}
override fun onWisefyAsyncFailure(exception: WisefyException) {
println("onWisefyAsyncFailure e - $exception")
}
}
)
And it works good! But sometimes this API working very slow(15-30 sec for connection)
Is it possible to decrease time connection to AP?