mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 10:01:15 +00:00
Merge pull request #106462 from shiena/fix/prevent-camera-permission
Android: Don't request `CAMERA` permission on editor startup
This commit is contained in:
commit
596a8eb54c
1 changed files with 2 additions and 0 deletions
|
|
@ -190,6 +190,8 @@ abstract class BaseGodotEditor : GodotActivity(), GameMenuFragment.GameMenuListe
|
|||
// The RECORD_AUDIO permission is requested when the "audio/driver/enable_input" project
|
||||
// setting is enabled.
|
||||
Manifest.permission.RECORD_AUDIO,
|
||||
// The CAMERA permission is requested when `CameraFeed.feed_is_active` is enabled.
|
||||
Manifest.permission.CAMERA,
|
||||
)
|
||||
|
||||
excludedPermissions.add(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue