The permission mechanism has been changed since Android 6.0. Some permissions have to be re-applied in the activity after registering in the manifest. ACCESS_FIND_LOCATION is a dangerous permission and needs to be applied dynamically in the activity. Solution 1: Change your compiled version to below 23 , 2: Apply for ACCESS_FIND_LOCATION permission in the activity.
The permission mechanism has been changed since Android 6.0. Some permissions have to be re-applied in the activity after registering in the manifest. ACCESS_FIND_LOCATION is a dangerous permission and needs to be applied dynamically in the activity. Solution 1: Change your compiled version to below 23 , 2: Apply for ACCESS_FIND_LOCATION permission in the activity.