Skip to content

Commit ec49147

Browse files
authored
Merge pull request #105303 from hamiltonha/patch-10
Update android tutorial and quickstart versioning
2 parents a2dcd46 + 856fc9e commit ec49147

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ If you do not already have an Android application, follow these steps to set up
153153
jcenter()
154154
}
155155
dependencies{
156-
implementation 'com.microsoft.identity.client:msal:1.2.+'
156+
implementation 'com.microsoft.identity.client:msal:1.+'
157157
implementation 'com.microsoft.graph:microsoft-graph:1.5.+'
158158
}
159159
packagingOptions{

0 commit comments

Comments
 (0)