Peko icon indicating copy to clipboard operation
Peko copied to clipboard

Android Library for requesting Permissions with Kotlin Flow

Results 10 Peko issues
Sort by recently updated
recently updated
newest added

When using com.google.android.material:material:1.0.0 i got an error that some files (sdk 31) are missing. please downgrade to a lower material gradle

Due to the issue in `Dispatchers.Main` described here https://github.com/Kotlin/kotlinx.coroutines/issues/878, using `requestPermissionsAsync` might block the main thread for a few hundred milliseconds causing a frame drop. It would make sense to...

Question based on the fact that any coroutine in Kotlin returns a Job which can be disposed.

Hey, When the user does not click on any button of the Android native request dialog but outside, the dialog gets dismissed and Peko triggers the `PermissionResult.Denied.DeniedPermanently` result. I think...

As stated in title. Compile SDK: 33 Android version: 13 Image: https://i.imgur.com/FwdLvgh.png ``` CoroutineScope(Default).launch { val result = requestPermissionsAsync( Manifest.permission.ACCESS_COARSE_LOCATION, Manifest.permission.ACCESS_FINE_LOCATION ) when (result) { is PermissionResult.Granted -> {Log.e("Activity", "GRANTED")...

Used version: implementation 'com.markodevcic:peko:3.0.3' Some Google play report: Device: samsung dm1q (Galaxy S23) Android: Android 13 (SDK 33) compileSdkVersion: 33 targetSdkVersion: 33 minSdkVersion: 24 Sometimes PEKO fails with exception: ```...

Hello there! Trying to gain background access. I learned that Peko, while requesting ACCESS_BACKGROUND_LOCATION, transitions user to the app permission settings only if ACCESS_FINE_LOCATION was previously gained, otherwise the flow...

PEKO 3.0.1 If I request permission on a fresh app startup where permissions has not been requested previously, then the app is stuck in a deadlock style ANR. It never...