My Android app needs to request permission for location services. I do this with:
ActivityCompat.requestPermissions(this, new String[]{
Change:
to:
The permission is for "coarse" location data (i.e., not fine-grained), not "course" location data (e.g., where some university class is being held).