- 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
25 lines
687 B
Java
25 lines
687 B
Java
package com.google.android.datatransport;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public abstract class Event {
|
|
public abstract Integer getCode();
|
|
|
|
public abstract Object getPayload();
|
|
|
|
public abstract Priority getPriority();
|
|
|
|
public abstract ProductData getProductData();
|
|
|
|
public static Event ofData(Object obj, ProductData productData) {
|
|
return new AutoValue_Event(null, obj, Priority.DEFAULT, productData);
|
|
}
|
|
|
|
public static Event ofData(Object obj) {
|
|
return new AutoValue_Event(null, obj, Priority.DEFAULT, null);
|
|
}
|
|
|
|
public static Event ofUrgent(Object obj) {
|
|
return new AutoValue_Event(null, obj, Priority.HIGHEST, null);
|
|
}
|
|
}
|