正在查看: OLX India v19.42.007 应用的 CTPushNotificationReceiver.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: OLX India v19.42.007 应用的 CTPushNotificationReceiver.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.clevertap.android.sdk.pushnotification;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import com.clevertap.android.sdk.b0;
import com.clevertap.android.sdk.e1;
import com.clevertap.android.sdk.u1;
@Deprecated(since = "4.3.0")
public class CTPushNotificationReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent launchIntentForPackage;
try {
Bundle extras = intent.getExtras();
if (extras == null) {
return;
}
if (extras.containsKey("wzrk_dl")) {
launchIntentForPackage = new Intent("android.intent.action.VIEW", Uri.parse(intent.getStringExtra("wzrk_dl")));
u1.y(context, launchIntentForPackage);
} else {
launchIntentForPackage = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());
if (launchIntentForPackage == null) {
return;
}
}
b0.K(context, extras);
launchIntentForPackage.setFlags(872415232);
launchIntentForPackage.putExtras(extras);
launchIntentForPackage.putExtra("wzrk_from", "CTPushNotificationReceiver");
if (extras.containsKey("close_system_dialogs") && extras.getBoolean("close_system_dialogs")) {
context.sendBroadcast(new Intent("android.intent.action.CLOSE_SYSTEM_DIALOGS"));
}
context.startActivity(launchIntentForPackage);
e1.c("CTPushNotificationReceiver: handled notification: " + extras.toString());
} catch (Throwable th) {
e1.u("CTPushNotificationReceiver: error handling notification", th);
}
}
}