Having watched the tutorial several times, could someone please clarify for me....
1. Do ALL 'dangerous permissions' (where required) need to be added to the manifest file or is it only:
android.permission.WRITE_EXTERNAL_STORAGE ?
2. Erel's suggestion that CheckAndRequest(Rp.XXXXX_XXXXX) is handled in the Activity_Resume event appears not to work in the case of Google Maps where the DP is invoked when the layout containing the MapFragment in it is loaded. You are forced to handle it right at the beginning of Activity_Create instead?
3. The following DP's...
android.permission.ACCESS_COARSE_LOCATION and,
android.permission.ACCESS_FINE_LOCATION
...are needed when adding Google maps. Is it correct to assume that BOTH be satisfied by merely executing CheckAndRequest for ACCESS_FINE_LOCATION ?
Thanks.
1. Do ALL 'dangerous permissions' (where required) need to be added to the manifest file or is it only:
android.permission.WRITE_EXTERNAL_STORAGE ?
2. Erel's suggestion that CheckAndRequest(Rp.XXXXX_XXXXX) is handled in the Activity_Resume event appears not to work in the case of Google Maps where the DP is invoked when the layout containing the MapFragment in it is loaded. You are forced to handle it right at the beginning of Activity_Create instead?
3. The following DP's...
android.permission.ACCESS_COARSE_LOCATION and,
android.permission.ACCESS_FINE_LOCATION
...are needed when adding Google maps. Is it correct to assume that BOTH be satisfied by merely executing CheckAndRequest for ACCESS_FINE_LOCATION ?
Thanks.