排除或限制试用版中的功能

如果允许客户在试用期内免费使用你的应用,则可以通过排除或限制试用期内的某些功能,吸引客户升级到应用的完整版本。 确定在开始编码之前应限制哪些功能,然后确保应用仅在购买完整许可证时允许它们工作。 还可以在客户购买应用之前启用仅在试用期间显示的功能(如横幅或水印)。

重要

本文演示如何使用 Windows.ApplicationModel.Store 命名空间的成员来实现试用功能。 此命名空间不再使用新功能进行更新,建议改用 Windows.Services.Store 命名空间。 Windows.Services.Store 命名空间支持最新的加载项类型,例如应用商店管理的易耗型加载项和订阅,旨在与合作伙伴中心和应用商店支持的未来产品和功能类型兼容。 Windows.Services.Store 命名空间是在 Windows 10 版本 1607 中引入的,并且只能在面向 Windows 10 周年版 (10.0; Build 14393) 或更高版本的项目中使用,并且需在 Visual Studio 中。 有关使用 Windows.Services.Store 命名空间实现试用功能的详细信息,请参阅本文

先决条件

一个 Windows 应用,用于添加客户购买的功能。

步骤 1:选择要在试用期间启用或禁用的功能

应用的当前许可证状态存储为 LicenseInformation 类的属性。 通常,将依赖于许可证状态的函数放在条件块中,如下一步中所述。 在考虑这些功能时,请确保可以采用在所有许可证状态中正常工作的方式实现这些功能。

此外,确定在应用运行时如何处理应用许可证的更改。 你的试用应用可以功能齐全,但其中包含应用内广告横幅,而付费版本则没有这些广告。 或者,试用应用可以禁用某些功能,或显示定期消息,要求用户购买它。

考虑你正在制定的应用类型,以及适合它的试用或过期策略。 对于游戏的试用版,良好的策略是限制用户可以玩的游戏内容量。 对于实用工具的试用版,可以考虑设置到期日期,或限制潜在买家可以使用的功能。

对于大多数非游戏应用,设置到期日期效果良好,因为用户可以很好地了解完整的应用。 下面是一些常见的过期方案以及用于处理它们的选项。

  • 当应用运行 时, 试用版许可证过期

    如果应用正在运行时试用许可证过期,应用可以:

    • 不执行任何操作。
    • 向客户显示一条消息。
    • 接近了。
    • 提示客户购买应用。

    最佳做法是显示一条消息,提示你购买应用,如果客户购买它,请继续启用所有功能。 如果用户决定不购买应用,请将其关闭或提醒他们定期购买应用。

  • 试用许可证在应用启动 之前过期

    如果试用在用户启动应用之前过期,则你的应用不会启动。 相反,用户会看到一个对话框,该对话框提供从应用商店购买应用的选项。

  • 客户在应用运行时购买它

    如果客户在应用运行时购买了你的应用,那么你的应用可以采取以下操作。

    • 不执行任何作,并让他们继续处于试用模式,直到重启应用。
    • 感谢他们购买,或者显示一条消息。
    • 静默地启用完全许可证功能(或取消仅限试用版的提示)。

如果想要检测许可证更改并在应用中执行一些作,则必须添加一个事件处理程序,如下一步中所述。

步骤 2:初始化许可证信息

应用初始化时,获取应用的 LicenseInformation 对象,如以下示例所示。 我们假设 licenseInformationLicenseInformation类型的全局变量或字段。

目前,你将使用 CurrentAppSimulator 而不是 CurrentApp来获取模拟许可证信息。 在将应用的发布版本提交到 Store之前,必须将代码中的所有 CurrentAppSimulator 引用替换为 CurrentApp

void InitializeApp()
{
    // Some app initialization code...

    // Initialize the license info for use in the app that is uploaded to the Store.
    // Uncomment the following line in the release version of your app.
    //   licenseInformation = CurrentApp.LicenseInformation;

    // Initialize the license info for testing.
    // Comment the following line in the release version of your app.
    licenseInformation = CurrentAppSimulator.LicenseInformation;

    // Other app initialization code...
}

接下来,添加事件处理程序,以在应用运行时许可证更改时接收通知。 例如,如果试用期到期或客户通过应用商店购买应用,则应用的许可证可能会更改。

void InitializeApp()
{
    // Some app initialization code...

    // Initialize the license info for use in the app that is uploaded to the Store.
    // Uncomment the following line in the release version of your app.
    //   licenseInformation = CurrentApp.LicenseInformation;

    // Initialize the license info for testing.
    // Comment the following line in the release version of your app.
    licenseInformation = CurrentAppSimulator.LicenseInformation;

    // Register for the license state change event.
    licenseInformation.LicenseChanged += LicenseInformation_LicenseChanged;

    // Other app initialization code...
}

void LicenseInformation_LicenseChanged()
{
    // This method is defined later.
    ReloadLicense(); 
}

步骤 3:在条件块中编码功能

引发许可证更改事件时,应用必须调用许可证 API 来确定试用状态是否已更改。 此步骤中的代码演示如何为此事件构建处理程序。 此时,如果用户购买了应用,则最好向用户提供许可状态已更改的反馈。 你可能需要要求用户重启应用程序,这取决于你的编码方式。 但是,使这种过渡尽可能无缝和无痛。

此示例演示如何评估应用的许可证状态,以便可以相应地启用或禁用应用的功能。

void ReloadLicense()
{
    if (licenseInformation.IsActive)
    {
        if (licenseInformation.IsTrial)
        {
            // Show the features that are available during trial only.
        }
        else
        {
            // Show the features that are available only with a full license.
        }
    }
    else
    {
        // A license is inactive only when there' s an error.
    }
}

步骤 4:获取应用的试用到期日期

包括用于确定应用的试用到期日期的代码。

此示例中的代码定义了一个函数,用于获取应用的试用许可证的到期日期。 如果许可证仍然有效,则显示到期日期,其中包含试用到期前的天数。

void DisplayTrialVersionExpirationTime()
{
    if (licenseInformation.IsActive)
    {
        if (licenseInformation.IsTrial)
        {
            var longDateFormat = new Windows.Globalization.DateTimeFormatting.DateTimeFormatter("longdate");

            // Display the expiration date using the DateTimeFormatter.
            // For example, longDateFormat.Format(licenseInformation.ExpirationDate)

            var daysRemaining = (licenseInformation.ExpirationDate - DateTime.Now).Days;

            // Let the user know the number of days remaining before the feature expires
        }
        else
        {
            // ...
        }
    }
    else
    {
        // ...
    }
}

步骤 5:使用对许可证 API 的模拟调用测试功能

现在,使用模拟数据测试应用。 CurrentAppSimulator 从名为 WindowsStoreProxy.xml的 XML 文件中获取特定于测试的许可信息,该文件位于 %UserProfile%\AppData\local\packages\<包名称>\LocalState\Microsoft\Windows Store\ApiData。 可以编辑 WindowsStoreProxy.xml 以更改应用的模拟过期日期及其功能。 测试所有可能的过期和许可配置,以确保一切按预期工作。 有关详细信息,请参阅 将 WindowsStoreProxy.xml 文件与 CurrentAppSimulator一起使用。

如果此路径和文件不存在,则必须在安装期间或运行时创建它们。 如果尝试在 WindowsStoreProxy.xml 未出现在特定位置的情况下访问 CurrentAppSimulator.LicenseInformation 属性,则会出现错误。

步骤 6:将模拟的许可证 API 方法替换为实际 API

使用模拟许可证服务器测试应用并将应用提交到应用商店进行认证之前,请将 CurrentAppSimulator 替换为 CurrentApp,如下一个代码示例所示。

重要

当你将应用提交到应用商店时,你的应用必须使用 CurrentApp 对象,否则它将无法通过认证。

void InitializeApp()
{
    // Some app initialization code...

    // Initialize the license info for use in the app that is uploaded to the Store.
    // Uncomment the following line in the release version of your app.
    licenseInformation = CurrentApp.LicenseInformation;

    // Initialize the license info for testing.
    // Comment the following line in the release version of your app.
    // licenseInformation = CurrentAppSimulator.LicenseInformation;

    // Register for the license state change event.
    licenseInformation.LicenseChanged += LicenseInformation_LicenseChanged;

    // Other app initialization code...
}

步骤 7:描述免费试用版如何适用于你的客户

请务必解释你的应用在免费试用期间和之后的行为方式,以便你的客户不会对你的应用的行为感到惊讶。

有关描述应用的详细信息,请参阅 创建应用说明