- 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
23 lines
662 B
Java
23 lines
662 B
Java
package com.glu.plugins.gluanalytics.util;
|
|
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import java.util.UUID;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class DummyEventBus implements EventBus {
|
|
public static final EventBus INSTANCE = new DummyEventBus();
|
|
|
|
@Override // com.glu.plugins.gluanalytics.util.EventBus
|
|
public void publish(Intent intent) {
|
|
}
|
|
|
|
@Override // com.glu.plugins.gluanalytics.util.EventBus
|
|
public void subscribe(UUID uuid, Subscriber subscriber, Iterable<IntentFilter> iterable) {
|
|
}
|
|
|
|
@Override // com.glu.plugins.gluanalytics.util.EventBus
|
|
public void unsubscribe(UUID uuid) {
|
|
}
|
|
}
|