https://developer.apple.com/documentation/corewlan/cweventtype/linkqualitydidchange
As per the documentation core WLAN will send notification when there is a change in RSSI. I did not receive any notification when there is a change in RSSI.
https://developer.apple.com/documentation/corewlan/cweventtype/linkqualitydidchange
As per the documentation core WLAN will send notification when there is a change in RSSI. I did not receive any notification when there is a change in RSSI.
Is your client able to receive other events types?
I’m asking because:
linkQualityDidChange event.ssidDidChange, that suggests a general issue with your event monitor.Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
My client is able to receive other events for ssidDidChange and scanCacheUpdated. Only linkQualityDidChange event is missing.
` <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.apple.security.app-sandbox</key> <false/> <key>com.apple.security.network.client</key> <true/> </dict> </plist>
This is the entitlement the app has given.
I did have sample code to monitor only linkQualityDidChange events. This is also not receiving any events. Am I missing something?