Ask icon indicating copy to clipboard operation
Ask copied to clipboard

Android runtime permission make easy

Results 6 Ask issues
Sort by recently updated
recently updated
newest added

Has anyone found the issue with Android versions 8.0? All the permission callbacks not working for Oneplus A300 running 8.0.

I just followed the steps mentioned in README file, when the user grants the permission the application needs to be restarted; as none of the buttons stay in workable state(don't...

Using this pretty simple kotlin code: ``` Ask.on(this) .id(1001) .forPermissions(Manifest.permission.ACCESS_FINE_LOCATION) .withRationales(getString(R.string.location_permission_rationale)) .go() @AskGranted(Manifest.permission.ACCESS_FINE_LOCATION) fun mapAccessGranted(id: Int) { ... } ``` When running the app, permission is asked, but after OKing,...

It would be great, if the Ask.on method also accepts android.app.Fragment and not only android.support.v4.app.Fragment.

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs with latest version support library

What the title says. When a user does not have permissions yet, the dialog shows up and accepts/denies the permission, after doing this, the app automatically closes for some reasons.