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/tutorial-v2-android.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,7 @@ Follow these steps to create a new project if you don't already have an Android
159
159
-_OnFragmentInteractionListener_
160
160
-_SingleAccountModeFragment_
161
161
162
-
1. Open _MSGraphRequestWrapper_ and replace the code with following code snippet to call the Microsoft Graph API using the token provided by MSAL:
162
+
1. Open _MSGraphRequestWrapper.java_ and replace the code with following code snippet to call the Microsoft Graph API using the token provided by MSAL:
163
163
164
164
```java
165
165
packagecom.azuresamples.msalandroidapp;
@@ -236,7 +236,7 @@ Follow these steps to create a new project if you don't already have an Android
236
236
237
237
```
238
238
239
-
1. Open _OnFragmentInteractionListener_ and replace the code with following code snippet to allow communication between different fragments:
239
+
1. Open _OnFragmentInteractionListener.java_ and replace the code with following code snippet to allow communication between different fragments:
240
240
241
241
```java
242
242
packagecom.azuresamples.msalandroidapp;
@@ -255,7 +255,7 @@ Follow these steps to create a new project if you don't already have an Android
255
255
}
256
256
```
257
257
258
-
1. Open _SingleAccountModeFragment_ and replace the code with following code snippet to initialize a single-account application, loads a user account, and gets a token to call the Microsoft Graph API:
258
+
1. Open _SingleAccountModeFragment.java_ and replace the code with following code snippet to initialize a single-account application, loads a user account, and gets a token to call the Microsoft Graph API:
259
259
260
260
```java
261
261
packagecom.azuresamples.msalandroidapp;
@@ -644,7 +644,7 @@ Follow these steps to create a new project if you don't already have an Android
644
644
645
645
```
646
646
647
-
1. Open _MainActivity_ and replace the code with following code snippet to manage the UI.
647
+
1. Open _MainActivity.java_ and replace the code with following code snippet to manage the UI.
0 commit comments