Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hamza39460/49b6dddd5162a58e5b6c23f73f73c74f to your computer and use it in GitHub Desktop.
Save hamza39460/49b6dddd5162a58e5b6c23f73f73c74f to your computer and use it in GitHub Desktop.
var _credentials;
if (Platform.isAndroid) {
_credentials = new ClientId(
"YOUR_CLIENT_ID_FOR_ANDROID_APP_RETRIEVED_FROM_Google_Console_Project_EARLIER",
"");
} else if (Platform.isIOS) {
_credentials = new ClientId(
"YOUR_CLIENT_ID_FOR_IOS_APP_RETRIEVED_FROM_Google_Console_Project_EARLIER",
"");
}
@triyono777
Copy link

when use the "_credentials" ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment