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,26 @@
package com.tapjoy.internal;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import java.util.Set;
/* loaded from: classes4.dex */
public abstract class g {
public static i a;
public static void a(Activity activity) {
int taskId;
Intent intent;
Set<String> categories;
ComponentName component;
i iVar = a;
if (iVar == null || activity == null || (taskId = activity.getTaskId()) == -1 || (intent = activity.getIntent()) == null || (categories = intent.getCategories()) == null || !categories.contains("android.intent.category.LAUNCHER") || !"android.intent.action.MAIN".equals(intent.getAction()) || (component = intent.getComponent()) == null) {
return;
}
Integer num = (Integer) iVar.b.put(component.getClassName(), Integer.valueOf(taskId));
if (num == null || num.intValue() != taskId) {
iVar.c.c();
}
}
}