Skip to content

Instantly share code, notes, and snippets.

@baba-s
Created March 18, 2024 02:32
Show Gist options
  • Save baba-s/44eaad3dd8ea700de1c20a41566f6d55 to your computer and use it in GitHub Desktop.
Save baba-s/44eaad3dd8ea700de1c20a41566f6d55 to your computer and use it in GitHub Desktop.
using GooglePlayServices;
using UnityEditor;
using UnityEngine;
internal static class Example
{
[MenuItem( "Tools/Hoge" )]
private static void Hoge()
{
PlayServicesResolver.Resolve
(
resolutionComplete: () => Debug.Log( "完了" ),
forceResolution: true // 「Force Resolve」を呼び出すなら true を渡す
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment