diff options
author | Ramesh Mani Maran <ramesh.maran443@gmail.com> | 2017-03-06 15:34:21 +0530 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-03-18 10:27:30 +0100 |
commit | 27c7d253aa1f2125e37344d7829b5b87a4b9a901 (patch) | |
tree | 2b08122b9e511db32666a1dfd2be8d6f4c6fa58c /methods.py | |
parent | 111d3e8063449aeab5745c946fa08c277c569026 (diff) |
android: adding classpath and gradle plugins
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/methods.py b/methods.py index 7177dcb804..a86fa1937d 100644 --- a/methods.py +++ b/methods.py @@ -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) |