You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How long does it take to actually reload/update new rssi values? I tested the sample code on my mobile, but it takes more than 3 minutes to update the rssi values
The text was updated successfully, but these errors were encountered:
Unfortunately the updates are left up to Android OS. For battery conservation and security reasons calling startscan in android is throttled. Each different android version has unique throttling to make matters worse.
Android 8.0 and 8.1 are throttled to once every 30 minutes
Android 9 allows 4 calls in a 2 minute burst for foreground applications, and once every 30 minutes for background apps.
Android 10 and higher is the same as 9 but has dev options to change the throttling for local development (which would obviously not apply to application users)
This also is unique to wifi scanning, not explicitly RSSI updates, I imagine its possible the RSSI values may not even update upon receiving a new wifi scan result but that is lower level kernel stuff that devs don't have access to.
How long does it take to actually reload/update new rssi values? I tested the sample code on my mobile, but it takes more than 3 minutes to update the rssi values
The text was updated successfully, but these errors were encountered: