Skip to content

SongbookPro/flutter_windows_store

Repository files navigation

A flutter plugin for getting license information from the Microsoft Store. The app needs to be packaged as a misx and associated with a published app for this to return meaningful values.

Features

The following license information is returned:

  • isActive
  • isTrial
  • skuStoreId
  • trialUniqueId
  • trialTimeRemaining

Usage

final store = WindowsStoreApi();
final license = await store.getAppLicenseAsync();

print(license.isActive);
print(license.isTrial);
print(license.skuStoreId);
print(license.trialUniqueId);
print(license.trialTimeRemaining);

See the Microsoft documentation for further details of the returned values.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors