Android Question Request Runtime Permission - SYSTEM_ALERT_WINDOW - where is ?

amorosik

Expert
Licensed User
For request permission, i use this code on Main.Activity_Request sub

Richiesta permessi a runtime:
Dim rp As RuntimePermissions

rp.CheckAndRequest(rp.PERMISSION_ACCESS_FINE_LOCATION )
wait for Activity_PermissionResult (Permission As String, Result As Boolean)

If Result Then
    Log("SI permesso -> PERMISSION_ACCESS_FINE_LOCATION")
    Else
    Log("NO permesso -> PERMISSION_ACCESS_FINE_LOCATION")
    End If

But the library RuntimePermission not show the SYSTEM_ALERT_WINDOW permission, to display my app over other app
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Here:

DTSpiDrxoh.gif
 
Upvote 0
Top