google_sign_in_tizen 0.1.3 copy "google_sign_in_tizen: ^0.1.3" to clipboard
google_sign_in_tizen: ^0.1.3 copied to clipboard

Tizen implementation of the google_sign_in plugin

google_sign_in_tizen #

pub package

The Tizen implementation of google_sign_in.

Usage #

This package is not an endorsed implementation of google_sign_in. Therefore, you have to include google_sign_in_tizen alongside google_sign_in as dependencies in your pubspec.yaml file.

dependencies:
  google_sign_in: ^5.4.1
  google_sign_in_tizen: ^0.1.3

For detailed usage on how to use google_sign_in, see https://pub.dev/packages/google_sign_in#usage.

Tizen integration #

The implementation of google_sign_in_tizen is based on Google Sign-In for TVs and Limited Input Devices. Note that this method only supports limited scopes of APIs as listed in Allowed scopes.

The plugin uses OAuth 2.0 Device Authorization Grant (aka Device Flow) which has a different authorization flow than Authorization Code Grant with PKCE used for endorsed platforms (Android, iOS, and web). While every step needed to authorize the app for "Authorization Code Grant with PKCE" happens on a single device, "Device Flow" requires the user to use a secondary device (PC, tablet, or desktop) to finalize the authorization.

To allow users to sign-in to their account using google_sign_in, you first need create credentials for your app ("Client ID" and "Client Secret"). See register your application for TVs and limited input devices on how to create them.

You also need to add some additional code to your app to fully integrate google_sign_in on Tizen (explained below).

Adding OAuth credentials #

Unlike "Authorization Code Grant with PKCE", "Device Flow" requires a client secret parameter during Google Sign-In. You must call GoogleSignInTizen.setCredentials function with your client's OAuth credentials before calling google_sign_in's API.

import 'package:google_sign_in_tizen/google_sign_in_tizen.dart';

GoogleSignInTizen.setCredentials(
  clientId: 'YOUR_CLIENT_ID',
  clientSecret: 'YOUR_CLIENT_SECRET',
);

⚠️ Security concerns

Storing a client secret in code is considered a bad practice as it exposes security vulnerabilites, you should perform extra steps to protect your client credentials.

  1. Do not upload credentials to public repositories.

    Anyone who has access to your credentials can impersonate your app. Make sure to not upload your production credentials in any source code repositories. See the comments in credentials.dart file in the example app .

  2. Obfuscate code in production.

    Client secrets can still be extracted from binary with reverse engineering, but it can be made challenging with code obfuscation.

    flutter-tizen build tpk --obfuscate --split-debug-info=/<project-name>/<directory>
    

    See Obfuscating Dart code for more information.

Assigning the plugin's navigatorKey object to MaterialApp or CupertinoApp #

During Google Sign-In with Device Flow, the client displays a widget that shows user_code and verification url to the user and instructs them to visit the verification url in a user agent on a secondary device (for example, in a browser on their mobile phone) and enter the user code. The plugin will be able to show this widget when GoogleSignInTizen.navigatorKey is assigned to the navigatorKey parameter of MaterialApp or CupertinoApp.

import 'package:google_sign_in_tizen/google_sign_in_tizen.dart';

MaterialApp(
  title: 'Google Sign In',
  navigatorKey: GoogleSignInTizen.navigatorKey,
  home: const SignInDemo(),
);

If you need to assign a custom navigatorKey to MaterialApp (or CupertinoApp), you must set that key to be used by the plugin as well.

import 'package:google_sign_in_tizen/google_sign_in_tizen.dart';

GoogleSignInTizen.navigatorKey = GlobalKey<NavigatorState>();
MaterialApp(
  title: 'Google Sign In',
  navigatorKey: GoogleSignInTizen.navigatorKey,
  home: const SignInDemo(),
);

Required privileges #

The http://tizen.org/privilege/internet privilege is required to perform networking operations requested by your app during Google Sign-In. Add the required privilege in tizen-manifest.xml of your application.

<privileges>
  <privilege>http://tizen.org/privilege/internet</privilege>
</privileges>

Supported devices #

All devices running Tizen 5.5 or later.