diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-23 08:02:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 08:02:21 +0200 |
commit | 4e29faaeea09be2df00596916877dcd7d2074fbf (patch) | |
tree | 98aacecde54331801ebd3bdccbf332094747a8d9 /platform/android/java_godot_wrapper.h | |
parent | b1c6ba9b246f0831d54d8f8384b21b21dd4b6ea4 (diff) | |
parent | 008838555620261b25a4df7a814cc789ec4a4ad3 (diff) |
Merge pull request #32600 from cagdasc/3.2-auto-permission-manager
Add request defined permissions in AndroidManifest.xml
Diffstat (limited to 'platform/android/java_godot_wrapper.h')
-rw-r--r-- | platform/android/java_godot_wrapper.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/android/java_godot_wrapper.h b/platform/android/java_godot_wrapper.h index b1bd9b7f48..d23ff273cb 100644 --- a/platform/android/java_godot_wrapper.h +++ b/platform/android/java_godot_wrapper.h @@ -54,6 +54,8 @@ private: jmethodID _get_clipboard = 0; jmethodID _set_clipboard = 0; jmethodID _request_permission = 0; + jmethodID _request_permissions = 0; + jmethodID _get_granted_permissions = 0; jmethodID _init_input_devices = 0; jmethodID _get_surface = 0; jmethodID _is_activity_resumed = 0; @@ -81,6 +83,8 @@ public: bool has_set_clipboard(); void set_clipboard(const String &p_text); bool request_permission(const String &p_name); + bool request_permissions(); + Vector<String> get_granted_permissions() const; void init_input_devices(); jobject get_surface(); bool is_activity_resumed(); |