如何使用 Flutter 2.02 Beta 版在 Windows Store 上传 Flutter 桌面应用程序?我的桌面应用程序在 2.02 版本上运行良好。
我创建了一个 Windows 版本:
flutter build windows
首先,您需要一个付费开发者账户: https://developer.microsoft.com/microsoft-store/register/
您将获得一个不到 20 美元的开发帐户。 (一次性购买)
然后使用 Flutter for Windows 构建应用程序,在此步骤之后,您可以使用 xsix 包为 Windows 应用商店构建 xsix 文件。您可以在此处找到该包的文档:https://pub.dev/documentation/msix/latest/
将此包添加到 dev_dependencies 中:
dev_dependencies:
flutter_test:
sdk: flutter
msix: ^2.1.1
“如果您将 msix 发布到 Windows 应用商店,则无需对其进行签名,Windows 应用商店会为您完成签名。要为 Windows 应用商店生成 msix 文件,请使用 --store 标志或在 pubspec 的 msix 配置部分中添加 store: true。 yaml。
注意: 配置值publisher_display_name、identity_name、msix_version、publisher必须有效,您可以在Windows应用商店仪表板>产品>产品标识中找到这些值。
有关详细信息,请参阅本教程:如何将 MSIX 包发布到 Microsoft Store”
然后使用这些评论:
flutter clean
flutter build windows
flutter pub run msix:create --store
完成此步骤后,您将获得 msix 文件以上传到 Windows 应用商店。