aboutsummaryrefslogtreecommitdiff
path: root/methods.py
diff options
context:
space:
mode:
authorJuan Linietsky2015-03-03 14:39:13 -0300
committerJuan Linietsky2015-03-03 14:39:13 -0300
commit4d2198110b4af7f203eeef95697255569e49bce7 (patch)
tree452e4964f127643bf52610718fd956d8b55ed6ba /methods.py
parent91faf8e21810c8995e4f6e3b6ba47a6482ab877e (diff)
downloadgodot-4d2198110b4af7f203eeef95697255569e49bce7.tar.gz
godot-4d2198110b4af7f203eeef95697255569e49bce7.tar.zst
godot-4d2198110b4af7f203eeef95697255569e49bce7.zip
Diffstat (limited to 'methods.py')
-rwxr-xr-xmethods.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/methods.py b/methods.py
index da1491e3f..9608b1b61 100755
--- a/methods.py
+++ b/methods.py
@@ -1291,6 +1291,14 @@ def android_module_manifest(self,file):
base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+file
f = open(base_path,"rb")
self.android_manifest_chunk+=f.read()
+def android_module_permission(self,file):
+ base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+file
+ f = open(base_path,"rb")
+ self.android_permission_chunk+=f.read()
+def android_module_attribute(self,file):
+ base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+file
+ f = open(base_path,"rb")
+ self.android_appattributes_chunk+=f.read()
def disable_module(self):
self.disabled_modules.append(self.current_module)