i'm developing cordova app targeting win10 in visual studio 2015. i'm using nfcplugin, debugging on remote tablet.
on debug following:
- adding proxy nfcplugin
- exception calling native command :: nfcplugin :: init ::exception=winrterror: access denied.
can me, how can fix this?
thanks...
it seems permission issue. please try adding following codes config.xml
:
<platform name="windows"> <config-file target="package.appxmanifest" parent="/package/capabilities" versions="8.1.0"> <devicecapability name="proximity" /> </config-file> <config-file target="package.appxmanifest" parent="/package/capabilities" versions=">8.1.0"> <devicecapability name="proximity" /> </config-file> </platform>
Comments
Post a Comment