when i install my app i get this error in the first open after install apk but when i open the second time the files load correctly. what is wrong? . this is muy blocks and the error
You needed the permissions set, but you ask for that file before they are granted.
how can set the permission without to enable in the first opening?
Do not use the Webviewer GoTUrl block during Screen. Initialize
Taifun
Which Android version are you using for your tests?
You do not have to ask for Internet permission, because it is a non dangerous permission
See a list of all dangerous permissions here List of Android permissions normal permissions and dangerous permissions in API 23? - Stack Overflow
Taifun
but i need to run my code using url for load my html external files. its not other form and set granted permissions to not get error like the image shared?
i am using android 9
Yes, for Android 9 you have to ask for read access...
Use the Permission Granted event to go to that url on first run of your app after the permission has been grated
Additionally in the Screen.Initialize use an if statement together with the IsPermissionGranted method from the tools extension to go that url only if the permission already has been granted on all further runs of your app
Taifun