Overlay Detection Issues on Samsung Devices with Popup View Option
https://i.sstatic.net/9FllRiKN.png▾
I'm currently developing an Android app using Kotlin/Jetpack Compose and have run into a persistent issue when trying to detect overlay on Samsung devices using the Popup View option. I'm trying to detect overlays using the FLAG_WINDOW_IS_PARTIALLY_OBSCURED and FLAG_WINDOW_IS_OBSCURED flags in a pointerInteropFilter as shown below:
Button(
onClick = { /* Button Click Action */ },
modifier = Modifier...