-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathReviewRequester.cs
executable file
·65 lines (56 loc) · 2.11 KB
/
ReviewRequester.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// This is the source code of Telegram for Windows Phone v. 3.x.x.
// It is licensed under GNU GPL v. 2 or later.
// You should have received a copy of the license in this archive (see LICENSE).
//
// Copyright Evgeny Nadymov, 2013-present.
//
using System.IO.IsolatedStorage;
using System.Windows;
using Microsoft.Phone.Tasks;
using TelegramClient.Resources;
namespace TelegramClient.Analytics
{
public class ReviewRequester
{
public static void IncreaseLaunchCount()
{
var settings = IsolatedStorageSettings.ApplicationSettings;
if (settings.Contains("LaunchCount"))
{
var launchCount = (int)settings["LaunchCount"];
settings["LaunchCount"] = ++launchCount;
}
else
{
settings["LaunchCount"] = 1;
}
}
public static void Request()
{
var settings = IsolatedStorageSettings.ApplicationSettings;
if (settings.Contains("LaunchCount"))
{
var launchCount = (int)settings["LaunchCount"];
var isReviewed = settings.Contains("IsReviewed");
if (!isReviewed)
{
if (launchCount == 3
|| launchCount == 5)
{
//var tracker = new AnalyticsTracker();
//var result = MessageBox.Show(AppResources.ReviewRequestMessage, AppResources.ReviewRequestTitle, MessageBoxButton.OKCancel);
//tracker.Track("Review", "Requested");
//if (result == MessageBoxResult.OK)
//{
// settings.Add("IsReviewed", true);
// tracker.Track("Review", "Accepted");
// var task = new MarketplaceReviewTask();
// task.Show();
//}
}
}
}
}
}
}