Greetings,
I created a permission test app to see how it works and this simple app does ask the user for the READ_PHONE_STATE permission so I know the manifest editor is set up correctly but the flow of coding ignores the statements following the CheckAndRequest statement.
Here are the logs from the app. I have several Log statements so I can see wether or not the user accepts the permission request. The only Log statement here is At B4XPage_Created. Nothing is shown to indicate wether the user has accepted or denied the permission request.
As you can see from the logs the other Log statements are never executed. Please let me know what I have missing.
Thanks.
I created a permission test app to see how it works and this simple app does ask the user for the READ_PHONE_STATE permission so I know the manifest editor is set up correctly but the flow of coding ignores the statements following the CheckAndRequest statement.
Coding from the simple permission test app.:
#Region Shared Files
#CustomBuildAction: folders ready, %WINDIR%\System32\Robocopy.exe,"..\..\Shared Files" "..\Files"
'Ctrl + click to sync files: ide://run?file=%WINDIR%\System32\Robocopy.exe&args=..\..\Shared+Files&args=..\Files&FilesSync=True
#End Region
'Ctrl + click to export as zip: ide://run?File=%B4X%\Zipper.jar&Args=Project.zip
Sub Class_Globals
Private Root As B4XView
Private xui As XUI
End Sub
Public Sub Initialize
End Sub
'This event will be called once, before the page becomes visible.
Private Sub B4XPage_Created (Root1 As B4XView)
Log("At B4XPage_Created")
Root = Root1
Root.LoadLayout("MainPage")
CheckPermissions
End Sub
'You can see the list of page related events in the B4XPagesManager object. The event name is B4XPage.
Sub Button1_Click
xui.MsgboxAsync("Hello world!", "B4X")
End Sub
Sub CheckPermissions
Starter.rp.CheckAndRequest(Starter.rp.PERMISSION_READ_PHONE_STATE)
Wait For Activity_PermissionResult (Permission As String, Result As Boolean)
Log(Result)
If Result Then
Log("We have permission")
Else
Log("We don't have permission")
End If
End Sub
Here are the logs from the app. I have several Log statements so I can see wether or not the user accepts the permission request. The only Log statement here is At B4XPage_Created. Nothing is shown to indicate wether the user has accepted or denied the permission request.
B4X:
*** Service (starter) Create ***
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
At B4XPage_Created
** Activity (main) Resume **
** Activity (main) Pause event (activity is not paused). **
** Activity (main) Resume **
** Activity (main) Pause event (activity is not paused). **
As you can see from the logs the other Log statements are never executed. Please let me know what I have missing.
Thanks.