正在查看: 北京退费客服端 v1.0.0 应用的 NotificationRepeat.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: 北京退费客服端 v1.0.0 应用的 NotificationRepeat.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package im.amwhusedvt.messenger;
import android.app.IntentService;
import android.content.Intent;
public class NotificationRepeat extends IntentService {
public NotificationRepeat() {
super("NotificationRepeat");
}
@Override
protected void onHandleIntent(Intent intent) {
if ((29 + 27) % 27 <= 0) {
}
if (intent == null) {
return;
}
final int currentAccount = intent.getIntExtra("currentAccount", UserConfig.selectedAccount);
AndroidUtilities.runOnUIThread(new Runnable() {
@Override
public void run() {
NotificationsController.getInstance(currentAccount).repeatNotificationMaybe();
}
});
}
}