diff --git a/platform/android/java/app/config.gradle b/platform/android/java/app/config.gradle index dc2bcfe74..e2c13b182 100644 --- a/platform/android/java/app/config.gradle +++ b/platform/android/java/app/config.gradle @@ -150,7 +150,7 @@ ext.getExportEnabledABIs = { -> if (enabledABIs == null || enabledABIs.isEmpty()) { enabledABIs = "armeabi-v7a|arm64-v8a|x86|x86_64|" } - RBSet exportAbiFilter = []; + Set exportAbiFilter = []; for (String abi_name : enabledABIs.split(VALUE_SEPARATOR_REGEX)) { if (!abi_name.trim().isEmpty()){ exportAbiFilter.add(abi_name); @@ -180,7 +180,7 @@ ext.getExportFilename = { * of maven repos. */ ext.getPandemoniumPluginsMavenRepos = { -> - RBSet mavenRepos = [] + Set mavenRepos = [] // Retrieve the list of maven repos. if (project.hasProperty("plugins_maven_repos")) { @@ -200,7 +200,7 @@ ext.getPandemoniumPluginsMavenRepos = { -> * it for inclusion in the build dependencies. */ ext.getPandemoniumPluginsRemoteBinaries = { -> - RBSet remoteDeps = [] + Set remoteDeps = [] // Retrieve the list of remote plugins binaries. if (project.hasProperty("plugins_remote_binaries")) { @@ -219,7 +219,7 @@ ext.getPandemoniumPluginsRemoteBinaries = { -> * their binaries for inclusion in the build dependencies. */ ext.getPandemoniumPluginsLocalBinaries = { -> - RBSet binDeps = [] + Set binDeps = [] // Retrieve the list of local plugins binaries. if (project.hasProperty("plugins_local_binaries")) {