Browse Source

Merge pull request #28164 from BastiaanOlij/AndroidCameraPermission

Add camera permissions to android
Rémi Verschelde 6 years ago
parent
commit
f20c9c25eb
1 changed files with 7 additions and 0 deletions
  1. 7 0
      platform/android/java/src/org/godotengine/godot/Godot.java

+ 7 - 0
platform/android/java/src/org/godotengine/godot/Godot.java

@@ -99,6 +99,7 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
 
 	static final int MAX_SINGLETONS = 64;
 	static final int REQUEST_RECORD_AUDIO_PERMISSION = 1;
+	static final int REQUEST_CAMERA_PERMISSION = 2;
 	private IStub mDownloaderClientStub;
 	private IDownloaderService mRemoteService;
 	private TextView mStatusText;
@@ -956,6 +957,12 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
 			}
 		}
 
+		if (p_name.equals("CAMERA")) {
+			if (ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {
+				requestPermissions(new String[] { Manifest.permission.CAMERA }, REQUEST_CAMERA_PERMISSION);
+				return false;
+			}
+		}
 		return true;
 	}