Skip to content

Commit 3df306d

Browse files
Merge pull request #250009 from davidmu1/updatesteps28
updated sign-in steps for admin center
2 parents b099860 + c469716 commit 3df306d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/active-directory/develop/tutorial-v2-android.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this tutorial:
2626
> [!div class="checklist"]
2727
>
2828
> - Create an Android app project in _Android Studio_
29-
> - Register the app in the Azure portal
29+
> - Register the app in the Microsoft Entra admin center
3030
> - Add code to support user sign-in and sign-out
3131
> - Add code to call the Microsoft Graph API
3232
> - Test the app
@@ -51,18 +51,18 @@ Follow these steps to create a new project if you don't already have an Android
5151
1. Open Android Studio, and select **Start a new Android Studio project**.
5252
2. Select **Basic Activity** and select **Next**.
5353
3. Enter a name for the application, such as _MSALAndroidapp_.
54-
4. Record the package name to be used in the Azure portal in later steps.
54+
4. Record the package name to be used in later steps.
5555
5. Change the language from **Kotlin** to **Java**.
5656
6. Set the **Minimum SDK API level** to **API 19** or higher, and select **Finish**.
5757

5858
### Register your application with Azure AD
5959

6060
[!INCLUDE [portal updates](~/articles/active-directory/includes/portal-update.md)]
6161

62-
1. Sign in to the <a href="https://portal.azure.com/" target="_blank">Azure portal</a>.
63-
1. If you have access to multiple tenants, use the **Directories + subscriptions** filter :::image type="icon" source="./media/common/portal-directory-subscription-filter.png" border="false"::: in the top menu to switch to the tenant in which you want to register the application.
64-
1. Search for and select **Azure Active Directory**.
65-
1. Under **Manage**, select **App registrations** > **New registration**.
62+
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least an [Application Developer](../roles/permissions-reference.md#application-developer).
63+
1. If access to multiple tenants is available, use the **Directories + subscriptions** filter :::image type="icon" source="media/common/portal-directory-subscription-filter.png" border="false"::: in the top menu to switch to the tenant in which you want to register the application.
64+
1. Browse to **Identity** > **Applications** > **App registrations**.
65+
1. Select **New registration**.
6666
1. Enter a **Name** for your application. Users of your app might see this name, and you can change it later.
6767
1. For **Supported account types**, select **Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)**. For information on different account types, select the **Help me choose** option.
6868
1. Select **Register**.
@@ -129,8 +129,8 @@ Follow these steps to create a new project if you don't already have an Android
129129
</activity>
130130
```
131131

132-
- Use your Azure portal **Package name** to replace `android:host=.` value. It should look like `com.azuresamples.msalandroidapp`.
133-
- Use your Azure portal **Signature Hash** to replace `android:path=` value. Ensure that there's a leading `/` at the beginning of your Signature Hash. It should look like `/1wIqXSqBj7w+h11ZifsnqwgyKrY=`.
132+
- Use the **Package name** to replace `android:host=.` value. It should look like `com.azuresamples.msalandroidapp`.
133+
- Use the **Signature Hash** to replace `android:path=` value. Ensure that there's a leading `/` at the beginning of your Signature Hash. It should look like `/1wIqXSqBj7w+h11ZifsnqwgyKrY=`.
134134

135135
You can find these values in the Authentication blade of your app registration as well.
136136

0 commit comments

Comments
 (0)