Saved Games on Android: how to check if a snapshot with the same name already exists?
问题 Currently I am working on the Google's Saved Games integration into an Android app. I am trying to create a new snapshot after the user requests new save. I implemented onActivityResult as i found here: @Override protected void onActivityResult(int requestCode, int resultCode, Intent intent) { // requestCode and resultCode checks happen here, of course... if (intent != null) { if (intent.hasExtra(Snapshots.EXTRA_SNAPSHOT_METADATA)) { // Load a snapshot. SnapshotMetadata snapshotMetadata =