- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
42 lines
1.5 KiB
Java
42 lines
1.5 KiB
Java
package com.applovin.impl.communicator;
|
|
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import com.applovin.communicator.AppLovinCommunicatorMessage;
|
|
import com.applovin.communicator.AppLovinCommunicatorPublisher;
|
|
import java.lang.ref.WeakReference;
|
|
import java.util.UUID;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class CommunicatorMessageImpl extends Intent {
|
|
private final String a;
|
|
protected final Bundle data;
|
|
protected final WeakReference<AppLovinCommunicatorPublisher> publisherRef;
|
|
|
|
public CommunicatorMessageImpl(Bundle bundle, String str, AppLovinCommunicatorPublisher appLovinCommunicatorPublisher) {
|
|
super(str);
|
|
this.a = UUID.randomUUID().toString();
|
|
this.publisherRef = new WeakReference<>(appLovinCommunicatorPublisher);
|
|
this.data = bundle;
|
|
}
|
|
|
|
public static AppLovinCommunicatorMessage create(Bundle bundle, String str, AppLovinCommunicatorPublisher appLovinCommunicatorPublisher) {
|
|
return new AppLovinCommunicatorMessage(bundle, str, appLovinCommunicatorPublisher);
|
|
}
|
|
|
|
public abstract Bundle getMessageData();
|
|
|
|
public abstract String getPublisherId();
|
|
|
|
public abstract String getTopic();
|
|
|
|
public String getUniqueId() {
|
|
return this.a;
|
|
}
|
|
|
|
@Override // android.content.Intent
|
|
public String toString() {
|
|
return "AppLovinCommunicatorMessage{publisherId=" + getPublisherId() + ", topic=" + getTopic() + "', uniqueId='" + this.a + "', data=" + this.data + '}';
|
|
}
|
|
}
|