将 SWC 移动到 libs 文件夹会破坏项目
我有一个 swc(degrafa),我一直在计算机上的另一个文件夹中外部引用它。当我尝试将 SWC 移至 libs 文件夹时,我无法再从应用程序访问 SWC。我缺少一个步骤吗?
I have a swc(degrafa) that I have been referencing externally in another folder on my computer. When I tried to move the swc to the libs folder I was no longer able to access the swc from my application. Is there a step im missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否按照此处?
此过程相当于使用library-path编译器选项。
Did you updated your library path as described here?
This procedure is the equivalent of using the library-path compiler option.
项目 libs 文件夹与项目树中的文件夹不同。这是因为我正在处理的项目是一个较大项目的一部分,并且项目属性引用了错误的文件夹。将 libs 文件夹更改为我想要使用的文件夹后,swc 被识别。
The project libs folder was not the same as the one in the project tree. This was due to the project i am working on being apart of a larger project and the project properties was referencing the wrong folder. After changing the libs folder to the one I wanted to use the swc was recognized.