taoyulu

Results 4 comments of taoyulu

a simple demo: ```kotlin fun FragmentActivity.pickPhoto() { GlobalScope.launch { catchAll { requestSinglePermission(this@pickPhoto, Manifest.permission.CAMERA) requestSinglePermission( this@pickPhoto, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE ) // do works after granted } } } // make callback as...

> Hello @taolulu, I assume an opt-out flag would do the trick, do you agree? It's enough for my use case. By the way, I need an option to avoid...