Example #1
0
  public static void startService() {
    if (!AppSettings.isNotifyEnable()) return;

    Intent intent = new Intent(GlobalContext.getInstance(), UnreadService.class);
    intent.setAction(ACTION_GET);
    GlobalContext.getInstance().startService(intent);
  }