- 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
40 lines
945 B
Java
40 lines
945 B
Java
package com.google.android.gms.games.leaderboard;
|
|
|
|
import android.database.CharArrayBuffer;
|
|
import android.net.Uri;
|
|
import androidx.annotation.NonNull;
|
|
import com.google.android.gms.common.annotation.KeepName;
|
|
import com.google.android.gms.common.data.Freezable;
|
|
import com.google.android.gms.games.Game;
|
|
import java.util.ArrayList;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface Leaderboard extends Freezable<Leaderboard> {
|
|
public static final int SCORE_ORDER_LARGER_IS_BETTER = 1;
|
|
public static final int SCORE_ORDER_SMALLER_IS_BETTER = 0;
|
|
|
|
@NonNull
|
|
String getDisplayName();
|
|
|
|
void getDisplayName(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
Uri getIconImageUri();
|
|
|
|
@NonNull
|
|
@KeepName
|
|
@Deprecated
|
|
String getIconImageUrl();
|
|
|
|
@NonNull
|
|
String getLeaderboardId();
|
|
|
|
int getScoreOrder();
|
|
|
|
@NonNull
|
|
ArrayList<LeaderboardVariant> getVariants();
|
|
|
|
@NonNull
|
|
Game zza();
|
|
}
|