easypermissions-ktx
easypermissions-ktx copied to clipboard
🔓 Kotlin version of the popular google/easypermissions wrapper library to simplify basic system permissions logic on Android M or higher.
## Basic Information Device type: Emulator (Pixel4 API 29) OS version: Android 10 EasyPermissions version: 1.0.0 ## Question When I was implementing the EasyPermissions feature in Fragment, I noticed that...
## Basic Information Device type: Emulator OS version: Android 13 EasyPermissions version: v1.0.0 ## Describe the problem Application crashes if storage permission is requested on android 13 or above. What...
## Basic Information Device Brand:Samsung Model:Galaxy A12 Orientation:Portrait RAM free: 1.73 GB Disk free: 103.01 GB Operating System Version:Android 12 Orientation:Portrait Rooted:No ## Describe the problem I'm getting following crash...
uh
RegisterForActivityResult should be used instead.
## Basic Information Device type: GIONEE S10L OS version: Android 9 EasyPermissions version: 1.0.0 ## Describe the problem I have got one crash report from crashlytics with the following stacktrace....
## Code and logs val request = PermissionRequest.Builder(spyActivity) .code(REQUEST_CODE) .perms(**REQUEST_CODE_LOCATION_AND_CONTACTS_PERMISSION**) .theme(R.style.my_fancy_style) .rationale(R.string.camera_and_location_rationale) .positiveButtonText(R.string.rationale_ask_ok) .negativeButtonText(R.string.rationale_ask_cancel) .build() EasyPermissions.requestPermissions(spyActivity, request)
**Summary** This refactor allows users to use `Easy Permissions Rationale` (standard rationale) or create a custom rationale to be used in **Easy Permissions** flow, according to **Android Guidelines** to ask...