mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix ios and android plugin always invalid due to null ConfigFile
This commit is contained in:
parent
32043fc682
commit
a350e01dc7
2 changed files with 2 additions and 0 deletions
|
|
@ -714,6 +714,7 @@ Vector<PluginConfigAndroid> EditorExportPlatformAndroid::get_plugins() {
|
|||
|
||||
if (!plugins_filenames.is_empty()) {
|
||||
Ref<ConfigFile> config_file;
|
||||
config_file.instantiate();
|
||||
for (int i = 0; i < plugins_filenames.size(); i++) {
|
||||
PluginConfigAndroid config = PluginConfigAndroid::load_plugin_config(config_file, plugins_dir.path_join(plugins_filenames[i]));
|
||||
if (config.valid_config) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue