Skip to content

Commit 98e89e4

Browse files
authored
Merge pull request #111351 from mmacy/patch-51
[msal][issue] fix scope and config file name (#52162)
2 parents e4201b3 + 5dceaab commit 98e89e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ If you do not already have an Android application, follow these steps to set up
8787

8888
1. In Android Studio's project pane, navigate to **app\src\main\res**.
8989
2. Right-click **res** and choose **New** > **Directory**. Enter `raw` as the new directory name and click **OK**.
90-
3. In **app** > **src** > **main** > **res** > **raw**, create a new JSON file called `auth_configbn_single_account.json` and paste the MSAL Configuration that you saved earlier.
90+
3. In **app** > **src** > **main** > **res** > **raw**, create a new JSON file called `auth_config_single_account.json` and paste the MSAL Configuration that you saved earlier.
9191

9292
Below the redirect URI, paste:
9393
```json
@@ -188,7 +188,7 @@ import com.microsoft.identity.client.exception.*;
188188
## Instantiate PublicClientApplication
189189
#### Initialize Variables
190190
```java
191-
private final static String[] SCOPES = {"File.Read"};
191+
private final static String[] SCOPES = {"Files.Read"};
192192
/* Azure AD v2 Configs */
193193
final static String AUTHORITY = "https://login.microsoftonline.com/common";
194194
private ISingleAccountPublicClientApplication mSingleAccountApp;

0 commit comments

Comments
 (0)