Android SDK Migration Guide
Android specific migration guide for the May 2025 GYP migration.
Overview
Migration Guide
Retrieving a Matchup
fun getGamesMatchup(
matchupId: String,
onResult: (LegacyMatchup) -> Unit
)/**
* Retrieve matchup with the given id and returns result.
* @param matchupId id of the games matchup
* @param onResult callback with a [GetMatchupResult]
*/
fun getMatchup(
matchupId: String,
onResult: (GetMatchupResult) -> Unit
)Creating a Matchup
Accepting a Matchup
Cancelling a Matchup
Return types for recreational games specific actions
Last updated