Hi there,
I’m trying to create a package version of custom plugin that I have made, and actually I have dependencies on other plugin. When building the package for the plugin I get "ERROR: Unable to find plugin ‘PluginA’ (referenced via command line → PluginB.uplugin). Install it and try again, or remove it from the required plugin list.
PluginA have the following settings
"Modules": [
{
"Name": "PluginA",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"WhitelistPlatforms": [ "Win64" ]
}
]
PluginB the following settings
"Modules": [
{
"Name": "PluginB",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "ConfigManager",
"Type": "Runtime",
"LoadingPhase": "Default"
}
],
"Plugins": [
{
"Name": "PluginA",
"Enabled": true
}
]
I know that ideally i shouldn’t have dependency on other plugins but actually I don’t have a choice
Any help would be appreciated
Thanks