B4A Library PermissionsManager - Ivica Golubovic    May 15, 2023   (29 reactions) PermissionsManager is a library that enables the management of runtime permissions. This library completely replaces the standard RuntimePermissions library with the addition of modern dangerous permissions and special permissions that require approval via the settings application.
This library con B4A Tutorial Runtime Permissions (Android 6.0+ Permissions) - Erel    Mar 16, 2022   (33 reactions) 1. Edit: In B4XPages the permission result event signature is: Wait For B4XPage_PermissionResult (Permission As String, Result As Boolean)
2. Important to read: https://www.b4x.-jar-targetsdkversion-minsdkversion.87610/#content
261306184
If the targetSdkVersion is lower than 23 then the standard B4A Code Snippet Notifications permission with targetSdkVersion = 33 - Erel    Jun 06, 2023   (23 reactions) There is a new "dangerous" (runtime) permission On Android 13+ devices required for showing notifications. When targetSdkVersion < 33, the OS will show the permission dialog automatically before the notification is displayed. Once we switch to targetSdkVersion=33 we are responsible for requesting it B4A Question Android App Self-Destruct - DonManfred (first post)    Jul 07, 2022   (2 reactions) as it is not a dangerous permission and you do not use runtimepermissions at all (not needed) it seems to be an Android permission-system. It is the user (not the app) which have to decide to accept permission or not. You can not overcome this i guess. B4A Question Showing a PDF File with dangerous permission. - Erel (first post)    Sep 10, 2023   (1 reaction) You don't need this line.
You should add put the StartActivity call inside a Try / Catch block as not all devices will have an app installed that can handle pdf. Wish Dangerous permissions - Erel (first post)    Nov 21, 2019   (1 reaction) 1. No code needs to be added to the manifest editor.
2. The runtime permission request should be implemented based on your app specific requirements. At least parts of it. Other B4A v11.50 has been released! - Erel    Mar 21, 2022   (51 reactions) You need to set it in the B4J sending code: m.Put("priority", 10) - StartServiceAt / StartServiceAtExact: You need to use StartServiceAtExact and add this "non-dangerous" permission: AddPermission(android.permission.SCHEDULE_EXACT_ALARM) B4A Example B4Xgoodies_from_walt61 Online - AnandGupta (first post)    Feb 06, 2023   (1 reaction) B4A
Permissions
PermissionsManager
PermissionsManager is a library that enables the management of runtime permissions. This library completely replaces the standard RuntimePermissions library with the addition of modern dangerous permissions and special permissions that require approval via the sett B4A Tutorial Version safe APK installation - Erel    Oct 12, 2018   (35 reactions) The following non-dangerous permission is required: AddPermission(android.permission.REQUEST_INSTALL_PACKAGES) A full example is attached. It also checks that the "installation from unknown source" option is enabled and that the external storage is writable. Example updated and is now based on F B4A Question Permission Denial: starting intent..........with revoked permission android.permission.CALL_PHONE - DonManfred (first post)    Jan 11, 2020   (4 reactions) The Runtimepermissions tutorial describes how to find out "dangerous Permissions". Every dangerous permission needs requested using Runtimepermissions. If i add your Code to an app i can see the following Permissions needed http://snapshots.basic4android.de/dangpermissions021.png CALL_PHONE and RE Page: 1   2   3   4   5   6   7   Powered by ColBERT |