Back to project page WearPomodoro.
The source code is released under:
GNU General Public License
If you think the Android project WearPomodoro listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 Alex Korovyansky./*ww w .j a v a2 s. c o m*/ */ package com.alexkorovyansky.wearpomodoro.app; public class PomodoroConstants { public static final int POMODORO_LENGTH_MS = 25 * 60 * 1000; public static final int SHORT_BREAK_LENGTH_MS = 5 * 60 * 1000; public static final int LONG_BREAK_LENGTH_MS = 20 * 60 * 1000; public static final int POMODORO_NUMBER_FOR_LONG_BREAK = 4; }