- 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
56 lines
1.6 KiB
Java
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);
|
|
}
|