mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-12 08:47:50 +01:00
have release build check daily for upgrades
(Applies to github and sourceforge releases only)
This commit is contained in:
parent
a0beecafc3
commit
46752af0cd
1 changed files with 3 additions and 3 deletions
|
@ -47,9 +47,8 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
||||||
public static final String NEW_XLATION_CBK = "NEW_XLATION_CBK";
|
public static final String NEW_XLATION_CBK = "NEW_XLATION_CBK";
|
||||||
|
|
||||||
private static final long INTERVAL_ONEHOUR = 1000 * 60 * 60;
|
private static final long INTERVAL_ONEHOUR = 1000 * 60 * 60;
|
||||||
// weekly
|
|
||||||
private static final long INTERVAL_ONEDAY = INTERVAL_ONEHOUR * 24;
|
private static final long INTERVAL_ONEDAY = INTERVAL_ONEHOUR * 24;
|
||||||
private static final long INTERVAL_NDAYS = 7;
|
private static final long INTERVAL_NDAYS = 1;
|
||||||
|
|
||||||
// constants that are also used in info.py
|
// constants that are also used in info.py
|
||||||
private static final String k_NAME = "name";
|
private static final String k_NAME = "name";
|
||||||
|
@ -76,7 +75,8 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
||||||
@Override
|
@Override
|
||||||
public void onReceive( Context context, Intent intent )
|
public void onReceive( Context context, Intent intent )
|
||||||
{
|
{
|
||||||
if ( null != intent && null != intent.getAction()
|
if ( null != intent
|
||||||
|
&& null != intent.getAction()
|
||||||
&& intent.getAction().equals( Intent.ACTION_BOOT_COMPLETED ) ) {
|
&& intent.getAction().equals( Intent.ACTION_BOOT_COMPLETED ) ) {
|
||||||
restartTimer( context );
|
restartTimer( context );
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue