正在查看: Loan Locker v1.5 应用的 AutoScreenRemindForegroundService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Loan Locker v1.5 应用的 AutoScreenRemindForegroundService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.user.a4keygen.services;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.Service;
import android.content.Intent;
import android.os.Build;
import android.os.IBinder;
import android.util.Log;
import androidx.core.app.NotificationCompat;
import com.user.a4keygen.activity.EmiReminderScreenActivity;
import com.user.a4keygen.constants.ServiceKeyValueConstant;
import com.user.a4keygen.constants.WebServiceUrlConstant;
import com.user.a4keygen.util.IconUtils;
import com.user.a4keygen.webutil.WebClientService;
public class AutoScreenRemindForegroundService extends Service {
private static final String CHANNEL_ID = "AutoLockScreenRemindForegroundServiceChannel";
private static final int NOTIFICATION_ID = 1524;
private static final String TAG = "AutoLockScreenRemindForegroundService";
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int i, int i2) {
createNotificationChannel();
startForeground(NOTIFICATION_ID, new NotificationCompat.Builder(this, CHANNEL_ID).setContentTitle(WebClientService.getWebServiceUrl().equals(WebServiceUrlConstant.GMM_WEB_SERVICE_URL) ? ServiceKeyValueConstant.CALL_LOCK_UNLOCK_SERVICE : "Auto screen reminder service").setSmallIcon(IconUtils.getAppIcon()).setPriority(1).build());
Intent intent2 = new Intent(this, (Class<?>) EmiReminderScreenActivity.class);
intent2.setFlags(268435456);
intent2.putExtra("sound", "Y");
intent2.putExtra("url", "http://mobilesafepl.com/audio/loan_audio_kisti.mp3");
startActivity(intent2);
Log.d(TAG, "onStartCommand: Screen Reminder Worked");
return 2;
}
private void createNotificationChannel() {
if (Build.VERSION.SDK_INT >= 26) {
NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ID, "CallLock Service Channel", 2);
NotificationManager notificationManager = (NotificationManager) getSystemService(NotificationManager.class);
if (notificationManager != null) {
notificationManager.createNotificationChannel(notificationChannel);
}
}
}
@Override
public void onDestroy() {
super.onDestroy();
stopForeground(true);
}
}