Skip to content

Commit 856fc9e

Browse files
authored
Update quickstart-v2-android.md
1 parent 7eeaf2f commit 856fc9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ We'll now look at these files in more detail and call out the MSAL-specific code
168168
MSAL ([com.microsoft.identity.client](https://javadoc.io/doc/com.microsoft.identity.client/msal)) is the library used to sign in users and request tokens used to access an API protected by Microsoft identity platform. Gradle 3.0+ installs the library when you add the following to **Gradle Scripts** > **build.gradle (Module: app)** under **Dependencies**:
169169
170170
```gradle
171-
implementation 'com.microsoft.identity.client:msal:1.0.0'
171+
implementation 'com.microsoft.identity.client:msal:1.+'
172172
```
173173
174174
You can see this in the sample project in build.gradle (Module: app):
175175
176176
```java
177177
dependencies {
178178
...
179-
implementation 'com.microsoft.identity.client:msal:1.0.+'
179+
implementation 'com.microsoft.identity.client:msal:1.+'
180180
...
181181
}
182182
```

0 commit comments

Comments
 (0)