1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

android: adding classpath and gradle plugins

(cherry picked from commit 27c7d253aa)
This commit is contained in:
Ramesh Mani Maran
2017-03-06 15:34:21 +05:30
committed by Rémi Verschelde
parent 3c16e7842f
commit f2f2369db8
4 changed files with 21 additions and 1 deletions

View File

@@ -1307,6 +1307,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)