B4A Question RuntimePermissions - Sergey_New    Jul 8, 2024 When using RuntimePermissions, permission cannot be obtained:
AddManifestText(
<uses-sdk...
Private rp As RuntimePermissions
End Sub
Sub Globals
End Sub
Sub Activity_Create... B4A Question How to get FileProvider working without entire RuntimePermission lib or entire com.android.support:support-v4 ? - JohnC    Jan 4, 2023 that the shared file can be placed. This function is included in the RuntimePermission lib but including... the RuntimePermission lib is an included lib, which again adds 500k to the app.
I was then able to eliminate... B4A Question How to get "GetSafeDirDefaultExternal" value without RuntimePermissions lib? - JohnC    Dec 21, 2022 the RuntimePermissions lib to be added to the project?... location is perfect for my needs, but adding the RuntimesPermission lib (that provides... B4A Question [Solved] File.DirRootExternal and RuntimePermissions - asales    Mar 18, 2018 I use File.DirRootExternal and File.DirDefaultExternal in my apps and I want to implement the RuntimePermissions. To the DirDefaultExternal I use GetSafeDirDefaultExternal("") and works fine. How I can change this code to use the RuntimePermissions? MyDir = File.DirRootExternal & "/commom/" Thanks advance for any tips.... B4A Question RuntimePermissions and READ_MEDIA_AUDIO - MrKim    Jun 1, 2025 I requested READ_MEDIA_AUDIO in the manifest but did not see it as an option in runtimepermission lib. It was added to requested permissions for my app but not allowed.
Is it now a dangerous permission that needs to be requested?
I notice someone has written a new lib Here do i need to use that now? I would prefer to stay with the built-in pm.... B4A Question B4X RuntimePermissions Failing completely in 10.2 - MrKim    Sep 19, 2020 RuntimePermissions that I use are failing with the same error. This error occurs on RP.Check(RP.PERMISSION_WRITE_EXTERNAL_STORAGE) RP.Check(RP.PERMISSION_CALL_PHONE) and RP.Check(RP.PERMISSION_CAMERA) Android 29 manifest target 28. Pixel 3 XL Android Version 10. Build number is QQ3A.200805.001... at anywheresoftware.b4a.objects.RuntimePermissions.Check(RuntimePermissions.java:73) at java... Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492... B4A Tutorial Runtime Permissions (Android 6.0+ Permissions) - Erel    Mar 16, 2022   (34 reactions)   tags: RuntimePermission, runtime permissions, B4A Runtime Permissions, Runtime, SDK, B4A deal with all cases anyway. As a general rule, you shouldn't call RuntimePermissions.Check from... RuntimePermissions.GetSafeDirDefaultExternal("") instead of File.DirDefaultExternal.... - Some Android 4.4 (API 19) devices do not allow access to RuntimePermissions... support for runtime permissions. The nice thing about runtime permissions is that the user is not... to approve "dangerous" permissions at runtime. Luckily most permissions are not... B4A Question Why Can not Work RuntimePermissions.GetSafeDirDefaultExternal In Android 13 - Snger    Nov 17, 2024 RuntimePermissions.GetSafeDirDefaultExternal This feature does not work in Android 13+ why?
I hope to solve this problem soon... Italian RuntimePermission - Fulvio75    Feb 6, 2024 Domanda su RuntimePermission:
Che differenza c'è tra mettere questo nel manifest....BLUETOOTH_CONNECT)
AddPermission(android.permission.BLUETOOTH_SCAN)
e usare il RP as RuntimePermission per... B4A Question Displaying RuntimePermission dialog the second time - aaronk    Jan 28, 2024 As RuntimePermissions
rp.CheckAndRequest(rp.PERMISSION_POST_NOTIFICATIONS)
Wait For....
It works and displays a popup message asking to enable the notifications permission.
Sub CheckPushNoticationsEnabled
Wait For (CheckAndRequestNotificationPermission) Complete (HasPermission As Boolean)
Log("HasPermission = " & HasPermission)
If HasPermission = False... Page: 1   2   3   4   5   |