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: articles/active-directory/develop/quickstart-v2-android.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,26 +93,26 @@ Applications must be represented by an app object in Azure Active Directory so t
93
93
94
94
> [!div class="sxs-lookup" renderon="portal"]
95
95
> 4. Inside **app** > **src** > **main**, open **AndroidManifest.xml**.
96
-
> 5. In the **manifest\application** node, replace the **<activity android:name="com.microsoft.identity.client.BrowserTabActivity">** node with the following:
96
+
> 5. In the **manifest\application** node, replace the **activity android:name="com.microsoft.identity.client.BrowserTabActivity"** node with the following:
97
97
> ```xml
98
-
><!--Intent filter to catch Microsoft's callback after Sign In-->
> note that the leading "/" is required for android:path
107
+
> -->
108
+
> <data
109
+
> android:host="Enter_the_Package_Name"
110
+
> android:path="/Enter_the_Signature_Hash"
111
+
> android:scheme= "msauth" />
112
+
> </intent-filter>
113
+
> </activity>
114
114
> ```
115
-
> 6. Run the app!
115
+
> 6. Run the app!
116
116
> The sample app starts on the **Single Account Mode** screen. A default scope, **user.read**, is provided by default, which is used when reading your own profile data during the Microsoft Graph API call. The URL for the Microsoft Graph API call is provided by default. You can change both of these if you wish.
117
117
>
118
118
> 
0 commit comments