From f2f2369db80fe9042e9fd5591bebf4e039720aab Mon Sep 17 00:00:00 2001 From: Ramesh Mani Maran Date: Mon, 6 Mar 2017 15:34:21 +0530 Subject: android: adding classpath and gradle plugins (cherry picked from commit 27c7d253aa1f2125e37344d7829b5b87a4b9a901) --- methods.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'methods.py') diff --git a/methods.py b/methods.py index 8431532df..d6646697b 100755 --- a/methods.py +++ b/methods.py @@ -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) -- cgit v1.3.1