구매가 가능합니다 & windows 전화에서 옵션을 시도하십시오. Windows 앱을 좋아하는 것 같습니다.Windows Phone 8에서 구매 및 사용해보기
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를 반환합니다).
왜냐하면 나는 아직 전화 상점이나 다른 문제를 업로드하지 않았기 때문입니까 ??
이 문제를 해결하는 데 도움이 되나요 ??
감사를 그냥 추가 참고로 응답 – SaravanaKumar
를 들어,하지만 (예 : 푸른 모바일 서비스 등) 클라우드 서비스에 응용 프로그램을 연결하고 '등록 : 여기 –