mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
revert earlier change not running update check timer on DEBUG builds
since they're now upgradable too.
This commit is contained in:
parent
6a36c1252d
commit
4b6ea57e70
1 changed files with 13 additions and 18 deletions
|
@ -93,10 +93,6 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
|
||||
public static void restartTimer( Context context )
|
||||
{
|
||||
if ( BuildConfig.DEBUG ) {
|
||||
DbgUtils.logf( "UpdateCheckReceiver.restartTimer(): dropping because"
|
||||
+ " debug builds can't be updated" );
|
||||
} else {
|
||||
AlarmManager am =
|
||||
(AlarmManager)context.getSystemService( Context.ALARM_SERVICE );
|
||||
|
||||
|
@ -114,7 +110,6 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
SystemClock.elapsedRealtime() + interval_millis,
|
||||
interval_millis, pi );
|
||||
}
|
||||
}
|
||||
|
||||
// Is app upgradeable OR have we installed any dicts?
|
||||
public static boolean haveToCheck( Context context )
|
||||
|
|
Loading…
Reference in a new issue