You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: support/entra/entra-id/app-integration/android-app-authentication-fails-after-published-to-google-play-store.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ The public signature hash of an application installed via Google Play differs fr
45
45
To resolve this issue, do the following things:
46
46
47
47
-[Get the new signature hash with the MSAL Package Inspector tool or from the Google Play Console](#get-the-new-signature-hash-with-the-msal-package-inspector-tool-or-from-the-google-play-console).
48
-
-[Add a new redirect URI to the App Registration in the Azure portal with the new signature hash](#add-a-new-redirect-uri-to-the-app-registration-in-the-azure-portal-with-the-new-signature-hash).
48
+
-[Add a new redirect URI to the app registration in the Azure portal with the new signature hash](#add-a-new-redirect-uri-to-the-app-registration-in-the-azure-portal-with-the-new-signature-hash).
49
49
-[Update the MSAL configuration within the application code to use the new redirect URI and signature hash](#update-the-msal-configuration-within-the-application-code-to-use-the-new-redirect-uri-and-signature-hash).
50
50
51
51
### Get the new signature hash with the MSAL Package Inspector tool or from the Google Play Console
@@ -59,7 +59,7 @@ To get the signature hash from the Google Play Console, follow these steps:
59
59
1. Go to the Google Play Console and sign in with your Google Developer account.
60
60
2. Once you are in the Google Play Console, select the app you works on.
61
61
3. On the left navigation, under the **Release** category, expand **Setup** and select **App Integrity**.
62
-
4. Select the **App signing**tab. You will see the **fingerprint** of the app signing key in three different variations.
62
+
4. Select the **App signing**tab. You will see the fingerprint of the app signing key in three different variations.
63
63
5. Copy the **SHA-1 certificate fingerprint** and paste it into the PowerShell script in step 6 as the value of the `$Thumbprint` variable.
64
64
6. Run the following script to obtain the base64 encoded fingerprint that MSAL needs:
65
65
@@ -80,15 +80,15 @@ To get the signature hash from the Google Play Console, follow these steps:
80
80
81
81
:::image type="content" source="media/android-app-authentication-fails-after-published-to-google-play-store/google-play-console-app-signing.png" alt-text="Screenshot that shows how to get the signature hash from Google Play Console.":::
82
82
83
-
### Add a new redirect URI to the App Registration in the Azure portal with the new signature hash
83
+
### Add a new redirect URI to the app registration in the Azure portal with the new signature hash
84
84
85
-
> [NOTE]
86
-
> We recommend adding a new redirect URI rather than modifying the existing one. Your app registration can contain many redirect URIs. Additionally, modifying the existing redirect URI might result in problems with the development version of your app. This could cause issues during troubleshooting, developing updates, amd so on.
85
+
> [!NOTE]
86
+
> We recommend adding a new redirect URI rather than modifying the existing one. Your app registration can contain many redirect URIs. Additionally, modifying the existing redirect URI might result in problems with the development version of your app. This could cause issues during troubleshooting, developing updates, and so on.
87
87
88
-
1. Sign in to the Azure portal and navigate to the App registrations page.
88
+
1. Sign in to the Azure portal and navigate to the **App registrations** page.
89
89
2. Select the app registration for your Android app.
90
90
3. Under **Manage**, select **Authentication**.
91
-
4. Under Platform configurations, select **Add a platform**.
91
+
4. Under **Platform configurations**, select **Add a platform**.
92
92
5. Under **Configure platforms**, select **Android**.
93
93
94
94
:::image type="content" source="media/android-app-authentication-fails-after-published-to-google-play-store/app-reg-platform-config.png" alt-text="Screenshot that shows how to configure Android platform.":::
@@ -100,9 +100,9 @@ To get the signature hash from the Google Play Console, follow these steps:
100
100
> It's fine to use the same package name in multiple Android Redirect URIs as long as the signature hash is different.
101
101
7. Select **Configure** to complete the platform configuration.
102
102
103
-
### Update the MSAL Configuration within the application code to use the new redirect URI and signature hash
103
+
### Update the MSAL configuration within the application code to use the new redirect URI and signature hash
104
104
105
-
Update the MSAL configuration and Android Manifest files in the application code.
105
+
Update the MSAL configuration file and Android Manifest file in the application code.
0 commit comments