This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
Replies: 1 comment 11 replies
-
I followed the exact instruction, but I'm still having trouble with calling winrt APIs. Every winrt API calls trigger the abort dialog: After attaching the Visual Studio debugger to the process, it will immediately hit an exception breakpoint. If I navigate down the call stack, I will always come cross this function call: ...which is triggered by calls to winrt APIs: I have zero idea what is causing the problem. Searching on the web didn't help a single bit. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Why we need
C++/WinRT
According to Call Windows Runtime APIs in desktop apps, NuGet package C++/WinRT is needed for
Win32
calling modern APIs ofUWP
How to setup NuGet package manager
Via package manager tools
Manually
How to setup
C++/WinRT
for Flutter plugin on WindowsAdd
NuGet install
part intoCMakeList.txt
in plugin's windows directoryAdd
NuGet import
part as wellThat's it!
Beta Was this translation helpful? Give feedback.
All reactions