1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

android: adding classpath and gradle plugins

This commit is contained in:
Ramesh Mani Maran
2017-03-06 15:34:21 +05:30
committed by Rémi Verschelde
parent 111d3e8063
commit 27c7d253aa
4 changed files with 21 additions and 1 deletions

View File

@@ -1381,6 +1381,11 @@ 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_gradle_plugin(self, plugin):
self.android_gradle_plugins.append(plugin)
def android_add_gradle_classpath(self, classpath):
self.android_gradle_classpath.append(classpath)
def android_add_default_config(self, config):
self.android_default_config.append(config)