Photo permission fix
This commit is contained in:
parent
439e4663e4
commit
fa0fab9ac7
1 changed files with 8 additions and 12 deletions
|
@ -1016,9 +1016,6 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void takePhoto(final double lat, final double lon, final MapActivity mapActivity) {
|
public void takePhoto(final double lat, final double lon, final MapActivity mapActivity) {
|
||||||
if (AV_EXTERNAL_PHOTO_CAM.get()) {
|
|
||||||
takePhotoExternal(lat, lon, mapActivity);
|
|
||||||
} else {
|
|
||||||
if (ActivityCompat.checkSelfPermission(mapActivity, Manifest.permission.CAMERA)
|
if (ActivityCompat.checkSelfPermission(mapActivity, Manifest.permission.CAMERA)
|
||||||
== PackageManager.PERMISSION_GRANTED) {
|
== PackageManager.PERMISSION_GRANTED) {
|
||||||
takePhotoInternalOrExternal(lat, lon, mapActivity);
|
takePhotoInternalOrExternal(lat, lon, mapActivity);
|
||||||
|
@ -1030,7 +1027,6 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
||||||
CAMERA_FOR_PHOTO_REQUEST_CODE);
|
CAMERA_FOR_PHOTO_REQUEST_CODE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private void takePhotoInternalOrExternal(double lat, double lon, MapActivity mapActivity) {
|
private void takePhotoInternalOrExternal(double lat, double lon, MapActivity mapActivity) {
|
||||||
openCamera();
|
openCamera();
|
||||||
|
|
Loading…
Reference in a new issue