是否有可能使購買&在Windows Phone 8 嘗試選項,如在Windows應用商店。在Windows Phone 8上購買和試用?
我在Windows Store中的一個遊戲是從下載之日起的一週內完全訪問。之後,Windows存儲本身鎖定遊戲(如果我們在儀表板中放置1周)。
像那樣,windows phone 8具有任何的功能。 。
即使我嘗試了購買&嘗試使用上面的鏈接。
我改變了checklicense(),如下所示。
private void CheckLicense()
{
if DEBUG
string message = "This sample demonstrates the implementation of a trial mode in an application." +
"Press 'OK' to simulate trial mode. Press 'Cancel' to run the application in normal mode.";
if (MessageBox.Show(message, "Debug Trial",
MessageBoxButton.OKCancel) == MessageBoxResult.OK)
{
_isTrial = true;
}
else
{
_isTrial = false;
}
else
_isTrial = _licenseInfo.IsTrial();
//Included lines
if(_isTrail)
freeversion = true; //Here Free version trigger when user presses Try
else
freeversion = false; //Here fullversion trigger when user presses Buy
//Included lines
endif
}
如果我喜歡這樣。我在主模式下運行它。它始終是freeversion爲false(即:_isTrail總是返回false)。
因爲我還沒有上傳到windows phone store或其他一些問題?
幫忙解決這個??
感謝您的答覆 – SaravanaKumar
只是作爲一個附加的註釋,但是,您可以連接應用程序到雲服務(如Azure的移動服務)和「寄存器' 裝置。這不是免費的,如果無法連接,您可能需要確保應用程序仍然有效。最重要的是,如果你的應用程序不需要網絡功能,它將需要。 –