com.samsung.android.net.wifi.WIFI_AP_STA_STATE_CHANGED

T rying to find a new way to keep using com.samsung.android.net.wifi.WIFI_AP_STA_STATE_CHANGED in Android (Kotlin) but unfortunately after OS 11 (API 30) it does not have support,

does anyone is using this recently with versions (OS 11-14)? or someone else found a different solution to cover this?

this is what I am doing now

val intentFilter = IntentFilter()
intentFilter.addAction(com.samsung.android.net.wifi.WIFI_AP_STA_STATE_CHANGED)

Hello,
As far as I am aware, Samsung specific public intents are no longer supported.

Can you please state what are you trying to use this intent for? Check if you can achieve what you are trying to do using the NetworkCapabilities or NetworkCallback APIs.