Add android_add_default_config for config.py

usage : env.android_add_default_config("applicationId 'com.godot.game'")
This commit is contained in:
volzhs
2016-07-07 04:03:50 +09:00
parent 9238de4ea9
commit 40d3234304
4 changed files with 12 additions and 1 deletions

View File

@@ -1326,7 +1326,9 @@ def android_add_aidl_dir(self,subpath):
def android_add_jni_dir(self,subpath):
base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
self.android_jni_dirs.append(base_path)
def android_add_default_config(self,config):
self.android_default_config.append(config)
def android_add_to_manifest(self,file):
base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+file
f = open(base_path,"rb")