Skip to content

Commit 85349b2

Browse files
authored
Merge pull request #105919 from julianparismorgan/user/pmorgan/android-bug
Fix Android sample version number
2 parents e055836 + 06408cb commit 85349b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/spatial-anchors/tutorials/tutorial-new-android-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,13 @@ Finally, add the following `handleTap()` method, that will tie everything togeth
119119

120120
## Attach a local Azure Spatial Anchor
121121

122-
Modify `Gradle Scripts\build.gradle (Module: app)` to include the following entry. This code will ensure that your app targets Azure Spatial Anchors version 1.3.0. That said, referencing any recent version of Azure Spatial Anchors should work.
122+
Modify `Gradle Scripts\build.gradle (Module: app)` to include the following entry. This code will ensure that your app targets Azure Spatial Anchors version 2.2.0. That said, referencing any recent version of Azure Spatial Anchors should work. You can find the release notes [here.](https://github.com/Azure/azure-spatial-anchors-samples/releases)
123123

124124
```
125125
dependencies {
126126
...
127-
implementation "com.microsoft.azure.spatialanchors:spatialanchors_jni:[1.3.0]"
128-
implementation "com.microsoft.azure.spatialanchors:spatialanchors_java:[1.3.0]"
127+
implementation "com.microsoft.azure.spatialanchors:spatialanchors_jni:[2.2.0]"
128+
implementation "com.microsoft.azure.spatialanchors:spatialanchors_java:[2.2.0]"
129129
...
130130
}
131131
```

0 commit comments

Comments
 (0)