NekoX/TMessagesProj/src/main/java/org/telegram/messenger/NotificationsService.java

43 lines
1.1 KiB
Java

/*
* This is the source code of Telegram for Android v. 1.3.x.
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013-2018.
*/
package org.telegram.messenger;
import android.app.Service;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.IBinder;
public class NotificationsService extends Service {
@Override
public void onCreate() {
super.onCreate();
ApplicationLoader.postInitApplication();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
public void onDestroy() {
super.onDestroy();
SharedPreferences preferences = MessagesController.getGlobalNotificationsSettings();
if (preferences.getBoolean("pushService", true)) {
Intent intent = new Intent("org.telegram.start");
sendBroadcast(intent);
}
}
}