-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18604 from unoplatform/dev/doti/storecontext-docs
docs: Add in Store Context page
- Loading branch information
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
uid: Uno.Features.StoreContext | ||
--- | ||
|
||
# Store Context | ||
|
||
> [!TIP] | ||
> This article provides Uno Platform-specific information for the `Windows.Services.Store.StoreContext` namespace. For a comprehensive overview of this feature and detailed usage instructions, refer to the official documentation for [Windows.Services.Store.StoreContext Namespace](https://learn.microsoft.com/uwp/api/Windows.Services.Store.StoreContext). | ||
## In-App Review | ||
|
||
The in-app review feature is currently supported on iOS and Android through Google Play. | ||
|
||
### Google Play Integration | ||
|
||
#### References in a Single Project | ||
|
||
In an Uno Platform Single Project, you'll need to add the `GooglePlay` [Uno Feature](xref:Uno.Features.Uno.Sdk#uno-platform-features) as follows: | ||
|
||
```xml | ||
<UnoFeatures> | ||
... | ||
GooglePlay; | ||
... | ||
</UnoFeatures> | ||
``` | ||
|
||
#### References in a Legacy Project | ||
|
||
On all Uno Platform targets, you'll need the to add the `Uno.WinUI.GooglePlay` package to your project. This package is available on [nuget.org](https://www.nuget.org/packages/Uno.WinUI.GooglePlay). | ||
|
||
### Usage | ||
|
||
For iOS, no additional steps are needed—you can use the feature via the following snippet directly. On Android, ensure that you've added the above package to your project first. | ||
|
||
```csharp | ||
await Windows.Services.Store.StoreContext.GetDefault().RequestRateAndReviewAppAsync(); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters