With the new Androids permission system, I was wondering how to implement it correctly. The tutorials on how and when to use permissions seem pretty clear. However, I do not know who is requesting permissions and where to request them.
So basically, my question is: should an Activity that launches another activity request in advance, or should an Activity that requires permission place a request?
If this requires a request that requires permission, should I call requestForPermissioninternally onCreateor in onStart?
Although these seem to be very simple questions, I did not find any hints in the documentation.
Thanks.
source
share