INNER CODE UNIT · Java
AppRater
owncloud/android · owncloudApp/src/main/java/com/owncloud/android/AppRater.java:29
public class AppRater {
private static final String DIALOG_RATE_ME_TAG = "DIALOG_RATE_ME";
private final static int DAYS_UNTIL_PROMPT = 7;
private final static int LAUNCHES_UNTIL_PROMPT = 2;
private final static int DAYS_UNTIL_NEUTRAL_CLICK = 7;
public static final String APP_RATER_PREF_TITLE = "app_rater";
public static final String APP_RATER_PREF_DONT_SHOW = "don't_show_again";
private static final String APP_RATER_PREF_LAUNCH_COUNT = "launch_count";
private static final String APP_RATER_PREF_DATE_FIRST_LAUNCH = "date_first_launch";
public static final String APP_RATER_PREF_DATE_NEUTRAL = "date_neutral";
public static void appLaunched(Context mContext, String packageName) {
SharedPreferences prefs = mContext.getSharedPreferences(APP_RATER_PREF_TITLE, 0);
if (prefs.getBoolean(APP_RATER_PREF_DONT_SHOW, false)) {
Timber.d("Do not show the rate dialog again as the user decided");
return;