Unity 报错Exception: Cannot include plugin 'Assets/_语音转文字/0.Example/20.讯飞在线语音/Ifly/Plugins/x86_64/msc.dll' (Key: msc.dll;None) since plugin with the same name and architecture was already added ('Assets/_语音转文字/0.Example/20.讯飞在线语音/Ifly/Plugins/x86/msc.dll (Architecture: None)'). UnityEditor.Android.AndroidBuildPostprocessor.CollectPlugin (System.String path, Unity.Android.Types.AndroidArchitecture architecture, System.Collections.Generic.Dictionary`2[TKey,TValue] pluginContainer) (at <72747b9e86bb44c9ab4cfe8514244d62>:0)
时间: 2024-04-26 20:23:10 浏览: 330
这个错误通常是由于在 Unity 项目中添加了多个具有相同名称和架构的插件而引起的。在你的情况下,讯飞在线语音插件似乎添加了两次,一个是 x86_64 架构的 msc.dll,另一个是 x86 架构的 msc.dll。
为了解决这个问题,你需要删除其中一个 msc.dll,或者给它们命名不同的名字以避免冲突。你可以在 Unity 编辑器中的 "Assets" 窗口中找到这些插件,然后删除其中一个。如果你不确定哪个 msc.dll 是正确的,请与插件开发人员联系以获得帮助。
阅读全文