Replies: 6 comments 3 replies
-
Are you getting any exception? Possibly you are getting exception: In my case I found this error, even though Specifically, when having following in <Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="Windows.PartialTrustApplication">
</Application>
</Applications> then the And when having following setup <Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
</Application>
</Applications> then it works correctly. Could anyone provide a hint, how to make MS Store purchase work in partial trust application? |
Beta Was this translation helpful? Give feedback.
-
Honestly, the experience for using UWP isn't great in desktop applications. This has an interesting case where there is some documentation stating that it is outright unavailable, but the documentation for the runtime class itself states IInitializeWithWindow works. I wonder if the underlying problem with this and partial trust application is the same as with the file pickers. It detects that the application is running in an app container and just assumes that it is a UWP application and CoreWindow exists. If that is true then these are things that really need fixing in Windows. |
Beta Was this translation helpful? Give feedback.
-
The application is already Full Trust, so I don't think it's that. For now I open the Windows Store app to the product page so user can still buy "from the app", not perfect, but better than nothing. Unfortunately, I purchase a version myself, and now, my app is no longer in Trial, so the |
Beta Was this translation helpful? Give feedback.
-
How do you open Windows Store? Is there a URI that opens Windows Store app with purchase of certain in-app product? |
Beta Was this translation helpful? Give feedback.
-
Thank you very much. Unfortunately, it does not work (not found) with in-app products. |
Beta Was this translation helpful? Give feedback.
-
Just to add in, with exactly the same problem. Again, application is FullTrust
and calling either of
leads to
|
Beta Was this translation helpful? Give feedback.
-
Hi All!
Before opening an issue (because there might not be), I want to see if I'm missing something.
I have a app which implements un unlimited
Trial
and I cannot getRequestPurchaseAsync
to do display the store window, either calling it on theStoreContext
or aStoreProduct
.It instantly returns with the
Status
notPurchased
and theExtendedError
tonull
My app is associated with the store, I can retrieve the Product and License, so I can display a Dialog with the product price etc...
But the purchase process never "starts"
Here is the latest version of my code calling it:
Previously the context was initialised way earlier, for debug purpose I put everything in the same call (but this changes nothing).
For information:
Thank you for any feedbacks or ideas you could have!
Beta Was this translation helpful? Give feedback.
All reactions