Skip to content

Commit 788e3f7

Browse files
committed
Update Java screenshots
1 parent 0cb2ebf commit 788e3f7

29 files changed

+38
-48
lines changed

articles/ai-services/immersive-reader/includes/quickstarts/immersive-reader-client-library-csharp.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: rwaller
1212
ms.custom: "devx-track-js, devx-track-csharp"
1313
---
1414

15-
In this quickstart guide, you build a web app from scratch using C#, and integrate Immersive Reader using the client library. A full working sample of this quickstart is available [on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-csharp).
15+
In this quickstart guide, you build a web app from scratch using C#, and integrate Immersive Reader using the client library. A full working sample of this quickstart is [available on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-csharp).
1616

1717
## Prerequisites
1818

@@ -317,7 +317,5 @@ When you select the **Immersive Reader** button, the Immersive Reader launches w
317317

318318
## Next step
319319

320-
CHANGE - THIS WAS A PREREQ
321-
322320
> [!div class="nextstepaction"]
323-
> [Create a resource and configure Microsoft Entra ID](../../how-to-create-immersive-reader.md)
321+
> [Explore the Immersive Reader SDK reference](../../reference.md)

articles/ai-services/immersive-reader/includes/quickstarts/immersive-reader-client-library-java-android.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: devx-track-java
1212
ms.author: rwaller
1313
---
1414

15-
In this quickstart, you build an Android app from scratch and integrate the Immersive Reader. A full working sample of this quickstart is available [on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-java-android).
15+
In this quickstart, you build an Android app from scratch and integrate the Immersive Reader. A full working sample of this quickstart is [available on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-java-android).
1616

1717
## Prerequisites
1818

@@ -69,14 +69,14 @@ Replace the existing dependencies in the *build.gradle* file with the following
6969

7070
```build.gradle
7171
dependencies {
72-
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
73-
implementation ("androidx.appcompat:appcompat:1.6.1")
74-
implementation ("androidx.constraintlayout:constraintlayout:2.1.4")
75-
implementation ("com.google.code.gson:gson:2.10.1")
76-
implementation ("io.github.cdimascio:java-dotenv:5.1.3")
77-
testImplementation ("junit:junit:4.13.2")
78-
androidTestImplementation ("androidx.test.ext:junit:1.1.5")
79-
androidTestImplementation ("androidx.test.espresso:espresso-core:3.5.1")
72+
implementation fileTree(dir: 'libs', include: ['*.jar'])
73+
implementation 'androidx.appcompat:appcompat:1.0.2'
74+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
75+
implementation 'com.google.code.gson:gson:2.8.6'
76+
implementation 'io.github.cdimascio:java-dotenv:5.1.3'
77+
testImplementation 'junit:junit:4.12'
78+
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
79+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
8080
}
8181
```
8282

@@ -1388,7 +1388,5 @@ Use Android Studio to run the app on a device emulator. When you select **Immers
13881388

13891389
## Next step
13901390

1391-
CHANGE - THIS WAS A PREREQ
1392-
13931391
> [!div class="nextstepaction"]
1394-
> [Create a resource and configure Microsoft Entra ID](../../how-to-create-immersive-reader.md)
1392+
> [Explore the Immersive Reader SDK reference](../../reference.md)

articles/ai-services/immersive-reader/includes/quickstarts/immersive-reader-client-library-kotlin.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: rwaller
1212
ms.custom: devx-track-js
1313
---
1414

15-
In this quickstart, you build an Android app from scratch and integrate the Immersive Reader. A full working sample of this quickstart is available [on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-kotlin).
15+
In this quickstart, you build an Android app from scratch and integrate the Immersive Reader. A full working sample of this quickstart is [available on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-kotlin).
1616

1717
## Prerequisites
1818

@@ -69,18 +69,18 @@ Replace the existing dependencies in the *build.gradle* file with the following
6969

7070
```build.gradle
7171
dependencies {
72-
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
73-
implementation ("org.jetbrains.kotlin:kotlin-stdlib-jdk7")
74-
implementation ("androidx.appcompat:appcompat:1.6.1")
75-
implementation ("androidx.core:core-ktx:1.12.0")
76-
implementation ("androidx.constraintlayout:constraintlayout:2.1.4")
77-
implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1")
78-
implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1")
79-
implementation ("com.google.code.gson:gson:2.10.1")
80-
implementation ("io.github.cdimascio:java-dotenv:5.1.3")
81-
testImplementation ("junit:junit:4.13.2")
82-
androidTestImplementation ("androidx.test.ext:junit:1.1.5")
83-
androidTestImplementation ("androidx.test.espresso:espresso-core:3.5.1")
72+
implementation fileTree(dir: 'libs', include: ['*.jar'])
73+
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
74+
implementation 'androidx.appcompat:appcompat:1.0.2'
75+
implementation 'androidx.core:core-ktx:1.0.2'
76+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
77+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1"
78+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1"
79+
implementation 'com.google.code.gson:gson:2.8.6'
80+
implementation 'io.github.cdimascio:java-dotenv:5.1.3'
81+
testImplementation 'junit:junit:4.12'
82+
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
83+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
8484
}
8585
```
8686

@@ -612,7 +612,5 @@ Use Android Studio to run the app on a device emulator. When you select **Immers
612612

613613
## Next step
614614

615-
CHANGE - THIS WAS A PREREQ
616-
617615
> [!div class="nextstepaction"]
618-
> [Create a resource and configure Microsoft Entra ID](../../how-to-create-immersive-reader.md)
616+
> [Explore the Immersive Reader SDK reference](../../reference.md)

articles/ai-services/immersive-reader/includes/quickstarts/immersive-reader-client-library-nodejs.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: rwaller
1212
ms.custom: devx-track-js
1313
---
1414

15-
In this quickstart, you build a web app from scratch and integrate Immersive Reader using the Immersive Reader client library. A full working sample of this quickstart is available [on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-nodejs).
15+
In this quickstart, you build a web app from scratch and integrate Immersive Reader using the Immersive Reader client library. A full working sample of this quickstart is [available on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/quickstart-nodejs).
1616

1717
## Prerequisites
1818

@@ -251,7 +251,5 @@ When you select the **Immersive Reader** button, the Immersive Reader launches w
251251

252252
## Next step
253253

254-
CHANGE - THIS WAS A PREREQ
255-
256254
> [!div class="nextstepaction"]
257-
> [Create a resource and configure Microsoft Entra ID](../../how-to-create-immersive-reader.md)
255+
> [Explore the Immersive Reader SDK reference](../../reference.md)

articles/ai-services/immersive-reader/includes/quickstarts/immersive-reader-client-library-swift.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 02/14/2024
1111
ms.author: rwaller
1212
---
1313

14-
In this quickstart, you build an iOS app from scratch and integrate the Immersive Reader. A full working sample of this quickstart is available [here](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/ios).
14+
In this quickstart, you build an iOS app from scratch and integrate the Immersive Reader. A full working sample of this quickstart is [available on GitHub](https://github.com/microsoft/immersive-reader-sdk/tree/master/js/samples/ios).
1515

1616
## Prerequisites
1717

@@ -23,21 +23,21 @@ In this quickstart, you build an iOS app from scratch and integrate the Immersiv
2323

2424
Create a new project in Xcode.
2525

26-
![New Project - Swift](../../media/ios/xcode-create-project.png)
26+
:::image type="content" source="../../media/ios/xcode-create-project.png" alt-text="Screenshot of the Create a new Xcode project screen.":::
2727

2828
Choose **Single View App**.
2929

30-
![New Single View App - Swift](../../media/ios/xcode-single-view-app.png)
30+
:::image type="content" source="../../media/ios/xcode-single-view-app.png" alt-text="Screenshot of the template gallery to select a single view app.":::
3131

3232
## Set up authentication
3333

3434
In the top menu, select **Product > Scheme > Edit Scheme...**.
3535

36-
![Edit Scheme - Swift](../../media/ios/quickstart-ios-edit-scheme.png)
36+
:::image type="content" source="../../media/ios/quickstart-ios-edit-scheme.png" alt-text="Screenshot of the edit scheme dropdown menu.":::
3737

3838
In the **Run** view, select **Arguments** tab.
3939

40-
![Edit Scheme environment variables - Swift](../../media/ios/quickstart-ios-env-vars.png)
40+
:::image type="content" source="../../media/ios/quickstart-ios-env-vars.png" alt-text="Screenshot of the edit scheme environment variables.":::
4141

4242
In the **Environment Variables** section, add the following names and values, supplying the values given when you created your Immersive Reader resource.
4343

@@ -552,23 +552,21 @@ function sendContentToReader(message) {
552552

553553
Set the archive scheme in Xcode by selecting a simulator or device target.
554554

555-
![Archive scheme - Swift](../../media/ios/xcode-archive-scheme.png)
555+
:::image type="content" source="../../media/ios/xcode-archive-scheme.png" alt-text="Screenshot of the archive stream.":::
556556

557-
![Select Target - Swift](../../media/ios/xcode-select-target.png)
557+
:::image type="content" source="../../media/ios/xcode-select-target.png" alt-text="Screenshot of the simulator selection target.":::
558558

559559
In Xcode, press **Ctrl+R** or select the play button to run the project. The app should launch on the specified simulator or device.
560560

561561
In your app, you should see:
562562

563-
![Sample app - Swift](../../media/ios/sample-app-ipad.png)
563+
:::image type="content" source="../../media/ios/sample-app-ipad.png" alt-text="Screenshot of the sample app with text to be read.":::
564564

565565
When you select the **Immersive Reader** button, you'll see the Immersive Reader launched with the content on app.
566566

567-
![Immersive Reader - Swift](../../media/ios/immersive-reader-ipad.png)
567+
:::image type="content" source="../../media/ios/immersive-reader-ipad.png" alt-text="Screenshot of the Immersive Reader app.":::
568568

569569
## Next step
570570

571-
CHANGE - THIS WAS A PREREQ
572-
573571
> [!div class="nextstepaction"]
574-
> [Create a resource and configure Microsoft Entra ID](../../how-to-create-immersive-reader.md)
572+
> [Explore the Immersive Reader SDK reference](../../reference.md)
-43.4 KB
Loading
-20.4 KB
Loading
-41.6 KB
Loading
-52.1 KB
Loading
-29.3 KB
Loading

0 commit comments

Comments
 (0)