Commencer à intégrer Google Sign-In à votre application Android
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Avant de pouvoir intégrer Google Sign-In à votre propre application, vous devez configurer un projet dans la console Google APIs et configurer votre projet Android Studio.
Les étapes décrites sur cette page vous y aideront. Les étapes suivantes expliquent ensuite comment intégrer Google Sign-In à votre application.
Prérequis
Google Sign-In pour Android présente les exigences suivantes:
Un appareil Android compatible exécutant Android 6.0 ou version ultérieure, incluant le Google Play Store ou un émulateur avec un AVD exécutant la plate-forme des API Google basée sur Android 4.2.2 ou version ultérieure, et disposant des services Google Play version 15.0.0 ou ultérieure.
La dernière version du SDK Android, y compris le composant SDK Tools. Le SDK est disponible dans Android SDK Manager d'Android Studio.
Un projet configuré pour compiler avec Android 6.0 (Marshmallow) ou une version ultérieure.
Ce guide est destiné aux utilisateurs d'Android Studio, qui est l'environnement de développement recommandé.
Ajouter les services Google Play
Dans le fichier build.gradle de premier niveau de votre projet, assurez-vous que le dépôt Maven de Google est inclus:
allprojects {
repositories {
google()
// If you're using a version of Gradle lower than 4.1, you must instead use:
// maven {
// url 'https://maven.google.com'
// }
}
}
Ensuite, dans votre fichier build.gradle au niveau de l'application, déclarez les services Google Play comme dépendance:
Ouvrez votre projet dans la console API ou créez-en un si vous n'en avez pas déjà un.
Sur la page de l'écran d'autorisation OAuth, assurez-vous que toutes les informations sont complètes et exactes.
Sur la page "Identifiants", créez un ID client de type Android pour votre application si vous n'en avez pas déjà un. Vous devrez spécifier le nom du package et l'empreinte du certificat SHA-1 de votre application. Pour en savoir plus, consultez la section Authentifier votre client.
Obtenir l'ID client OAuth 2.0 de votre serveur backend
Sur la page "Identifiants", créez un ID client de type application Web. Notez la chaîne d'ID client, que vous devrez transmettre à la méthode requestIdToken ou requestServerAuthCode lorsque vous créerez l'objet GoogleSignInOptions.
Étapes suivantes
Maintenant que vous avez configuré un projet dans la console Google APIs et configuré votre projet Android Studio, vous pouvez intégrer Google Sign-In à votre application.
Le contenu et les exemples de code de cette page sont soumis aux licences décrites dans la Licence de contenu. Java et OpenJDK sont des marques ou des marques déposées d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/07/26 (UTC)."],[],[],null,["# Start Integrating Google Sign-In into Your Android App\n\n| **Warning:**\n|\n| **The Google Sign-In for Android API is outdated and no longer supported.**\n| To ensure the continued security and usability of your app, [migrate your Sign in with\n| Google implementation to Credential Manager](/identity/sign-in/credential-manager-siwg) today. Credential Manager\n| supports passkey, password, and federated identity authentication (such as\n| Sign-in with Google), stronger security, and a more consistent user\n| experience.\n|\n| **For Wear developers:** Credential Manager will be supported in Wear OS\n| 5.1 and later on selected watches. Developers actively supporting Wear OS 3, 4\n| and 5.0 devices with Sign in with Google should continue using Google Sign-in\n| for Android for your Wear applications. Sign in with Google support will be\n| available on Credential Manager APIs for these versions of WearOS at a later\n| date.\n\nBefore you can start integrating Google Sign-In in your own app, you must\nconfigure a Google API Console project and set up your Android Studio project.\nThe steps on this page do just that. The [next steps](#next_steps)\nthen describe how to integrate Google Sign-In into your app.\n\nPrerequisites\n-------------\n\nGoogle Sign-In for Android has the following requirements:\n\n- A compatible Android-powered device that runs Android 6.0 or newer and includes the Google Play Store or an emulator with an AVD that runs the Google APIs platform based on Android 4.2.2 or newer and has Google Play services version 15.0.0 or newer.\n- The latest version of the Android SDK, including the SDK Tools component. The SDK is available from the Android SDK Manager in Android Studio.\n- A project configured to compile against Android 6.0 (Marshmallow) or newer.\n\nThis guide is written for users of Android Studio, which is the recommended\ndevelopment environment.\n\nAdd Google Play services\n------------------------\n\nIn your project's top-level `build.gradle` file, ensure that Google's Maven\nrepository is included: \n\n allprojects {\n repositories {\n google()\n\n // If you're using a version of Gradle lower than 4.1, you must instead use:\n // maven {\n // url 'https://maven.google.com'\n // }\n }\n }\n\nThen, in your app-level `build.gradle` file, declare\n[Google Play services](https://developers.google.com/android) as a dependency: \n\n apply plugin: 'com.android.application'\n ...\n\n dependencies {\n implementation 'com.google.android.gms:play-services-auth:21.3.0'\n }\n\nConfigure a Google API Console project\n--------------------------------------\n\n1. Open your project in the [API console](https://console.cloud.google.com/), or create a project if you don't already have one.\n2. On the OAuth consent screen page, make sure all of the information is complete and accurate.\n3. On the Credentials page, create an **Android** type client ID for your app if you don't already have one. You will need to specify your app's package name and SHA-1 certificate fingerprint. See [Authenticating Your\n Client](https://developers.google.com/android/guides/client-auth) for more information.\n\nGet your backend server's OAuth 2.0 client ID\n---------------------------------------------\n\nIf your app [authenticates with a backend server](https://developers.google.com/identity/sign-in/android/backend-auth) or\n[accesses Google APIs from your backend server](/identity/legacy/gsi/offline-access), you need to get\nthe OAuth 2.0 client ID that represents your backend server.\n\nTo create a client ID for your server:\n\n1. Open your project in the [API console](https://console.cloud.google.com/).\n\n2. On the Credentials page, create a **Web application** type client ID. Take\n note of the client ID string, which you will need to pass to the\n `requestIdToken` or `requestServerAuthCode` method when you create the\n `GoogleSignInOptions` object.\n\nNext steps\n----------\n\nNow that you have configured a Google API Console project and set up your\nAndroid Studio project, you can [integrate Google Sign-In](/identity/legacy/gsi/legacy-sign-in) into\nyour app."]]