Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
package com.vungle.ads.internal.util;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import com.vungle.ads.internal.ui.VungleWebClient;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class RingerModeReceiver extends BroadcastReceiver {
private VungleWebClient webClient;
public final VungleWebClient getWebClient() {
return this.webClient;
}
public final void setWebClient(VungleWebClient vungleWebClient) {
this.webClient = vungleWebClient;
}
@Override // android.content.BroadcastReceiver
public void onReceive(Context context, Intent intent) {
String action;
VungleWebClient vungleWebClient;
if (intent != null) {
try {
action = intent.getAction();
} catch (Exception e) {
String localizedMessage = e.getLocalizedMessage();
if (localizedMessage != null) {
Logger.Companion.e("RingerModeReceiver", localizedMessage);
return;
}
return;
}
} else {
action = null;
}
if (Intrinsics.areEqual(action, "android.media.RINGER_MODE_CHANGED")) {
int intExtra = intent.getIntExtra("android.media.EXTRA_RINGER_MODE", -1);
Logger.Companion.d("RingerModeReceiver", "receive ringermode: " + intExtra);
if (intExtra == 0) {
VungleWebClient vungleWebClient2 = this.webClient;
if (vungleWebClient2 != null) {
vungleWebClient2.notifySilentModeChange(true);
return;
}
return;
}
if (intExtra != 1) {
if (intExtra == 2 && (vungleWebClient = this.webClient) != null) {
vungleWebClient.notifySilentModeChange(false);
return;
}
return;
}
VungleWebClient vungleWebClient3 = this.webClient;
if (vungleWebClient3 != null) {
vungleWebClient3.notifySilentModeChange(true);
}
}
}
}