-
Notifications
You must be signed in to change notification settings - Fork 1
Android Games Settings Intent
Stanislav Osipov edited this page Jul 25, 2020
·
1 revision
The code sample below shows how to show the Settings screen that allows the user to configure Games-related features for the current game.
var gamesClient = AN_Games.GetGamesClient();
gamesClient.GetSettingsIntent((result) =>
{
if (result.IsSucceeded)
{
var intent = result.Intent;
var proxy = new AN_ProxyActivity();
proxy.StartActivityForResult(intent, (intentResult) =>
{
proxy.Finish();
});
}
else
{
Debug.Log($"Failed to Get Settings Intent {result.Error.FullMessage}");
}
});Reliable and high-quality Unity Development service. Let's Talk!
Website | AssetStore | LinkedIn | Youtube | Scripting Reference
- Build Info
- Dark Mode
- Package Info
- Runtime Permissions
- Run External App
- Immersive Mode
- PackageManager
- Popups & Preloaders
- Rate Us Dialog
- Activity
- Intent
- Settings Page
- Media Player
- Date Picker Dialog
- Time Picker Dialog
- Locale
- Wheel Picker Dialog
- Developer Console Setup
- Connecting to The Service
- Purchase Flow
- Transactions Validation
- Subscriptions
- Licensing
- Getting Started
- Games Sing-in
- Server-side API Access
- Leaderboards
- Achievements
- Saved Games
- Image Manager
- Settings Intent