Comece a integrar o Login do Google no seu app Android
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Antes de começar a integrar o Login do Google no seu app, configure um projeto do Console de APIs do Google e configure seu projeto no Android Studio.
As etapas descritas nessa página explicam o processo. As próximas etapas
descrevem como integrar o Login do Google ao seu app.
Pré-requisitos
O Google Sign-In para Android tem os seguintes requisitos:
Um dispositivo Android compatível com o Android 6.0 ou mais recente e
que inclua a Google Play Store ou um emulador com um AVD que execute a plataforma de APIs
do Google com base no Android 4.2.2 ou mais recente e tenha o Google Play Services
versão 15.0.0 ou mais recente.
A versão mais recente do SDK do Android, incluindo o componente SDK Tools. O
SDK está disponível no Android SDK Manager no Android Studio.
Um projeto configurado para compilação no Android 6.0 (Marshmallow) ou mais recente.
Este guia foi escrito para usuários do Android Studio, que é o ambiente de desenvolvimento
recomendado.
Adicione o Google Play Services
No arquivo build.gradle de nível superior do projeto, verifique se o repositório
Maven do Google está incluído:
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'
// }
}
}
Em seguida, no arquivo build.gradle no nível do app, declare
Google Play Services como uma dependência:
Configurar um projeto do Console de APIs do Google
Abra seu projeto no console da API ou crie um projeto, caso ainda não tenha um.
Na página da tela de consentimento do OAuth, verifique se todas as informações estão
completas e corretas.
Na página "Credenciais", crie um ID do cliente do tipo Android para seu app,
se ainda não tiver um. Você vai precisar especificar o nome do pacote
do app e a impressão digital do certificado SHA-1. Consulte Como autenticar seu
cliente para mais
informações.
Receber o ID do cliente OAuth 2.0 do servidor de back-end
Na página "Credenciais", crie um ID do cliente do tipo Aplicativo da Web. Anote
a string do ID do cliente, que você vai precisar transmitir para o método
requestIdToken ou requestServerAuthCode ao criar o
objeto GoogleSignInOptions.
Próximas etapas
Agora que você configurou um projeto do Console de APIs do Google e configurou seu
projeto do Android Studio, é possível integrar o Login do Google ao
app.
O conteúdo e os exemplos de código nesta página estão sujeitos às licenças descritas na Licença de conteúdo. Java e OpenJDK são marcas registradas da Oracle e/ou suas afiliadas.
Última atualização 2025-07-26 UTC.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Não contém as informações de que eu preciso","missingTheInformationINeed","thumb-down"],["Muito complicado / etapas demais","tooComplicatedTooManySteps","thumb-down"],["Desatualizado","outOfDate","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Problema com as amostras / o código","samplesCodeIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 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."]]