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,84 @@
package com.applovin.communicator;
import android.content.Context;
import com.applovin.impl.communicator.MessagingServiceImpl;
import com.applovin.impl.ll;
import com.applovin.impl.sdk.j;
import com.applovin.impl.sdk.n;
import java.util.Collections;
import java.util.List;
/* loaded from: classes.dex */
public final class AppLovinCommunicator {
private static AppLovinCommunicator e;
private static final Object f = new Object();
private j a;
private n b;
private final ll c = new ll();
private final MessagingServiceImpl d = new MessagingServiceImpl();
public static AppLovinCommunicator getInstance(Context context) {
synchronized (f) {
try {
if (e == null) {
e = new AppLovinCommunicator();
}
} catch (Throwable th) {
throw th;
}
}
return e;
}
public AppLovinCommunicatorMessagingService getMessagingService() {
return this.d;
}
public boolean hasSubscriber(String str) {
return this.c.a(str);
}
public boolean respondsToTopic(String str) {
return this.a.p().a(str);
}
public void subscribe(AppLovinCommunicatorSubscriber appLovinCommunicatorSubscriber, String str) {
subscribe(appLovinCommunicatorSubscriber, Collections.singletonList(str));
}
public String toString() {
return "AppLovinCommunicator{sdk=" + this.a + '}';
}
public void unsubscribe(AppLovinCommunicatorSubscriber appLovinCommunicatorSubscriber, String str) {
unsubscribe(appLovinCommunicatorSubscriber, Collections.singletonList(str));
}
public void a(j jVar) {
this.a = jVar;
this.b = jVar.J();
a("Attached SDK instance: " + jVar + "...");
}
public void subscribe(AppLovinCommunicatorSubscriber appLovinCommunicatorSubscriber, List<String> list) {
for (String str : list) {
if (!this.c.a(appLovinCommunicatorSubscriber, str)) {
a("Unable to subscribe " + appLovinCommunicatorSubscriber + " to topic: " + str);
}
}
}
public void unsubscribe(AppLovinCommunicatorSubscriber appLovinCommunicatorSubscriber, List<String> list) {
for (String str : list) {
a("Unsubscribing " + appLovinCommunicatorSubscriber + " from topic: " + str);
this.c.b(appLovinCommunicatorSubscriber, str);
}
}
private void a(String str) {
if (this.b == null || !n.a()) {
return;
}
this.b.a("AppLovinCommunicator", str);
}
}

View File

@@ -0,0 +1,6 @@
package com.applovin.communicator;
/* loaded from: classes.dex */
public interface AppLovinCommunicatorEntity {
String getCommunicatorId();
}

View File

@@ -0,0 +1,27 @@
package com.applovin.communicator;
import android.os.Bundle;
import com.applovin.impl.communicator.CommunicatorMessageImpl;
/* loaded from: classes.dex */
public class AppLovinCommunicatorMessage extends CommunicatorMessageImpl {
public AppLovinCommunicatorMessage(Bundle bundle, String str, AppLovinCommunicatorPublisher appLovinCommunicatorPublisher) {
super(bundle, str, appLovinCommunicatorPublisher);
}
@Override // com.applovin.impl.communicator.CommunicatorMessageImpl
public Bundle getMessageData() {
return this.data;
}
@Override // com.applovin.impl.communicator.CommunicatorMessageImpl
public String getPublisherId() {
AppLovinCommunicatorPublisher appLovinCommunicatorPublisher = this.publisherRef.get();
return appLovinCommunicatorPublisher != null ? appLovinCommunicatorPublisher.getCommunicatorId() : "";
}
@Override // com.applovin.impl.communicator.CommunicatorMessageImpl
public String getTopic() {
return getAction();
}
}

View File

@@ -0,0 +1,6 @@
package com.applovin.communicator;
/* loaded from: classes.dex */
public interface AppLovinCommunicatorMessagingService {
void publish(AppLovinCommunicatorMessage appLovinCommunicatorMessage);
}

View File

@@ -0,0 +1,5 @@
package com.applovin.communicator;
/* loaded from: classes.dex */
public interface AppLovinCommunicatorPublisher extends AppLovinCommunicatorEntity {
}

View File

@@ -0,0 +1,6 @@
package com.applovin.communicator;
/* loaded from: classes.dex */
public interface AppLovinCommunicatorSubscriber extends AppLovinCommunicatorEntity {
void onMessageReceived(AppLovinCommunicatorMessage appLovinCommunicatorMessage);
}