Thank you so much for this video. Google didactic is not very good and they not always offer example codes as easy as you did. Also it is rare to find those who want to share the knowledge they have due to bias reasons or greed. Please continue to give us this small features that is not easy to come to a clean solution as you did. This is very much perfect. Once again, thank you so much!
Thank you for simplifying permissions request in android. I've irrelevant questions, You have used buttons in activity without declaration using find by Id and IDE didn't show error. How you achieved it? Thanks again.
You must import this: import kotlinx.android.synthetic.main.activity_main.*, and in build.gradle file in plugins add this id: id 'kotlin-android-extensions', after that you can use view id without findViewById
Great tutorial! just have one question, How can I differentiate the onRequestPermissionResult method to run one set of methods if one of the permissions is granted and another set of methods if the other has been granted? thank you!
Hey, ottimo tutorial! Avrei giusto due domande, nel mio codice non riesce a trovare l'id del bottone e lo segna in rosso con risoluzione "crea una variabile locale" e nel onRequestPermissionsResults mi chiede la super o di sopprimerla. Cosa mi consiglieresti di fare? Grazie in anticipo della risposta :D
bro how can i see permission on any time i mean if i make an app and i but in app camera permission how can i see from my pc the man who use my app and watsh it
Thank you so much for this video. I just want to ask how i can pass the data and the permission granted will only prompt once what i do is ) == PackageManager.PERMISSION_GRANTED -> { // Toast.makeText(applicationContext,"$name permission granted", Toast.LENGTH_SHORT).show() // captureImageUsingCamera() // } // shouldShowRequestPermissionRationale(permission) -> showDialog(permission,name,requestCode) // // else -> ActivityCompat.requestPermissions(this, arrayOf(permission), requestCode) // } // } // } i just pass the captureImageusing camera in the granted so everytime i clicked the btn it show text toast overall thank you so much
Best guide for the task! thanks bro you are awesome
Thank you so much for this video.
Google didactic is not very good and they not always offer example codes as easy as you did.
Also it is rare to find those who want to share the knowledge they have due to bias reasons or greed.
Please continue to give us this small features that is not easy to come to a clean solution as you did. This is very much perfect.
Once again, thank you so much!
Thank you for simplifying permissions request in android.
I've irrelevant questions, You have used buttons in activity without declaration using find by Id and IDE didn't show error. How you achieved it?
Thanks again.
You must import this: import kotlinx.android.synthetic.main.activity_main.*, and in build.gradle file in plugins add this id: id 'kotlin-android-extensions', after that you can use view id without findViewById
Thanks bro. I have learned from you.
What if API version is lower than 23? You are not handling that case?
Great tutorial! just have one question, How can I differentiate the onRequestPermissionResult method to run one set of methods if one of the permissions is granted and another set of methods if the other has been granted? thank you!
Hey, ottimo tutorial! Avrei giusto due domande, nel mio codice non riesce a trovare l'id del bottone e lo segna in rosso con risoluzione "crea una variabile locale" e nel onRequestPermissionsResults mi chiede la super o di sopprimerla. Cosa mi consiglieresti di fare? Grazie in anticipo della risposta :D
Thank you very much for this tutorial, clean and easy! SUBSCRIBED.
Thanks a bunch for very useful tutorials!
we take permission from user for "permission.READ_EXTERNAL_STORAGE" but where users data saved ? how we can read or see?
Why am I getting 'onRequestPermissionsResult' overrides nothing??
How use one button for multiple permission?
bro how can i see permission on any time i mean if i make an app and i but in app camera permission how can i see from my pc the man who use my app and watsh it
You understand this is considered illegal in most countries right?
Can you make an automatic image slider tutorial kotlin please?
That's very easy using ViewPager2, I'll try to put a tutorial about it in a couple of weeks
@@Indently Thank you.
How can I do that in fragment?
Super
How to check if user has checked don't ask this permission again checkbox?
It should be automatic.
@@Indently I want to redirect the user to settings screen if he has taped never ask this permission again checkbox
@@rahul_spawar Just check whether the permissions have been granted, and if not send them to the settings screen
So good man
Thank YOu
¦
Thank you so much for this video.
I just want to ask how i can pass the data and the permission granted will only prompt once what i do is ) == PackageManager.PERMISSION_GRANTED -> {
// Toast.makeText(applicationContext,"$name permission granted", Toast.LENGTH_SHORT).show()
// captureImageUsingCamera()
// }
// shouldShowRequestPermissionRationale(permission) -> showDialog(permission,name,requestCode)
//
// else -> ActivityCompat.requestPermissions(this, arrayOf(permission), requestCode)
// }
// }
// }
i just pass the captureImageusing camera in the granted so everytime i clicked the btn it show text toast overall thank you so much
where is the soure code avaliable ?