From c948d25b6e7b57b0c047b6f8af8c0f2e4781f8f5 Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Wed, 27 May 2020 12:04:31 -0700 Subject: Validate that `Use Custom Build` is enabled when `Plugins` are selected Remove `GodotPayment` from the default build template --- platform/android/java/app/config.gradle | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'platform/android/java/app/config.gradle') diff --git a/platform/android/java/app/config.gradle b/platform/android/java/app/config.gradle index 5251bc3066..acfdef531e 100644 --- a/platform/android/java/app/config.gradle +++ b/platform/android/java/app/config.gradle @@ -72,17 +72,12 @@ ext.getGodotPluginsRemoteBinaries = { -> /** * Parse the project properties for the 'plugins_local_binaries' property and return * their binaries for inclusion in the build dependencies. - * - * Returns the prebuilt plugins if the 'plugins_local_binaries' property is unavailable. */ ext.getGodotPluginsLocalBinaries = { -> - // Set the prebuilt plugins as default. If custom build is enabled, - // the 'plugins_local_binaries' will be defined so we can use it instead. - Set binDeps = ["libs/plugins/GodotPayment.release.aar"] + Set binDeps = [] // Retrieve the list of local plugins binaries. if (project.hasProperty("plugins_local_binaries")) { - binDeps.clear() String pluginsList = project.property("plugins_local_binaries") if (pluginsList != null && !pluginsList.trim().isEmpty()) { for (String plugin : pluginsList.split(PLUGIN_VALUE_SEPARATOR_REGEX)) { -- cgit v1.2.3