- 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
48 lines
1.0 KiB
Java
48 lines
1.0 KiB
Java
package com.google.android.gms.games.event;
|
|
|
|
import android.database.CharArrayBuffer;
|
|
import android.net.Uri;
|
|
import android.os.Parcelable;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.VisibleForTesting;
|
|
import com.google.android.gms.common.annotation.KeepName;
|
|
import com.google.android.gms.common.data.Freezable;
|
|
import com.google.android.gms.games.Player;
|
|
|
|
@VisibleForTesting
|
|
/* loaded from: classes2.dex */
|
|
public interface Event extends Freezable<Event>, Parcelable {
|
|
@NonNull
|
|
String getDescription();
|
|
|
|
void getDescription(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
String getEventId();
|
|
|
|
@NonNull
|
|
String getFormattedValue();
|
|
|
|
void getFormattedValue(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
Uri getIconImageUri();
|
|
|
|
@NonNull
|
|
@KeepName
|
|
@Deprecated
|
|
String getIconImageUrl();
|
|
|
|
@NonNull
|
|
String getName();
|
|
|
|
void getName(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
Player getPlayer();
|
|
|
|
long getValue();
|
|
|
|
boolean isVisible();
|
|
}
|