Files
rr3-apk/decompiled/sources/com/google/android/gms/games/PlayersClient.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

56 lines
1.6 KiB
Java

package com.google.android.gms.games;
import android.content.Intent;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.android.gms.tasks.Task;
/* loaded from: classes2.dex */
public interface PlayersClient {
@NonNull
public static final String EXTRA_PLAYER_SEARCH_RESULTS = "player_search_results";
@NonNull
Task<Intent> getCompareProfileIntent(@NonNull Player player);
@NonNull
Task<Intent> getCompareProfileIntent(@NonNull String str);
@NonNull
Task<Intent> getCompareProfileIntentWithAlternativeNameHints(@NonNull String str, @Nullable String str2, @Nullable String str3);
@NonNull
Task<Player> getCurrentPlayer();
@NonNull
Task<AnnotatedData<Player>> getCurrentPlayer(boolean z);
@NonNull
Task<String> getCurrentPlayerId();
@NonNull
Task<Intent> getPlayerSearchIntent();
@NonNull
Task<AnnotatedData<PlayerBuffer>> loadFriends(@IntRange(from = 1, to = 200) int i, boolean z);
@NonNull
Task<AnnotatedData<PlayerBuffer>> loadMoreFriends(@IntRange(from = 1, to = 200) int i);
@NonNull
@Deprecated
Task<AnnotatedData<PlayerBuffer>> loadMoreRecentlyPlayedWithPlayers(@IntRange(from = 1, to = 25) int i);
@NonNull
Task<AnnotatedData<Player>> loadPlayer(@NonNull String str);
@NonNull
Task<AnnotatedData<Player>> loadPlayer(@NonNull String str, boolean z);
@NonNull
@Deprecated
Task<AnnotatedData<PlayerBuffer>> loadRecentlyPlayedWithPlayers(@IntRange(from = 1, to = 25) int i, boolean z);
}