Software Archive
Read-only legacy content
公告
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 讨论

WIndows UAP Build Fails

Kevin_L_3
初学者
835 次查看

I get this warning when I try the Windows UAP 10 build

"Warning: Plugin Application Events appears to be missing the windows platform support required for this build target. The API provided by this plugin may not work on the windows platform."

But can't find what is the appropriate plugin to use - as the ones on the pre-canned list don't work. Any ideas?

Thanks

 

0 项奖励
3 回复数
Amrita_C_Intel
835 次查看

which plugin are you trying to use?

After warning are you able to build it?

0 项奖励
Kevin_L_3
初学者
835 次查看

As best as I can tell I removed the plugin dependent on events - this being local notifications. The other plugins I use don't have this dependency. The Windows 8 and 8.1 build without issues. I don't have the full list of plugins and versions to hand but will post in a day or two. 

 

 

0 项奖励
PaulF_IntelCorp
835 次查看

Kevin -- the way you can tell if a plugin is supported or not on the Windows platform is by inspecting the plugin.xml file that is present in every plugin. If that plugin includes a section like this (taken from the device plugin):

    <platform name="windows">
        <js-module src="src/windows/DeviceProxy.js" name="DeviceProxy">
            <merges target="" />
        </js-module>
    </platform>

The parts between the <platform> tags are a function of the specific plugin. What is important is the existence of that <platform name="windows"> section. If present, the plugin supports Windows. If not, you will get the warning, because it has no support for the "windows" target. If there is a "windows8" target that may still work.

0 项奖励
回复