Skip to content

Commit 2a28469

Browse files
committed
Android quickstart updated. Release Notes.
1 parent d18d075 commit 2a28469

File tree

3 files changed

+30
-5
lines changed

3 files changed

+30
-5
lines changed

articles/cognitive-services/Speech-Service/devices-sdk-release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ The following sections list changes in the most recent releases.
1919

2020
## Speech Devices SDK 1.9.0:
2121

22-
- Initial binaries for Urbetter DDK (Linux ARM64) and an ARM speaker (Linux ARM32) are provided.
22+
- Initial binaries for [Urbetter DDK](https://aka.ms/sdsdk-download-urbetter) (Linux ARM64) are provided.
2323
- Roobo v1 now uses Maven for the Speech SDK
2424
- Updated the [Speech SDK](https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk-reference) component to version 1.9.0. For more information, see its [release notes](https://aka.ms/csspeech/whatsnew).
2525

2626
## Speech Devices SDK 1.7.0:
2727

2828
- Linux ARM is now supported.
29-
- Initial binaries for Roobo v2 are provided (Linux ARM64).
29+
- Initial binaries for [Roobo v2 DDK](https://aka.ms/sdsdk-download-roobov2) are provided (Linux ARM64).
3030
- Windows users can use `AudioConfig.fromDefaultMicrophoneInput()` or `AudioConfig.fromMicrophoneInput(deviceName)` to specify the microphone to be used.
3131
- The library size has been optimized.
3232
- Support for multi-turn recognition using the same speech/intent recognizer object.

articles/cognitive-services/Speech-Service/speech-devices-sdk-android-quickstart.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: quickstart
11-
ms.date: 12/17/2019
11+
ms.date: 02/12/2020
1212
ms.author: erhopf
1313
---
1414

@@ -29,7 +29,7 @@ Before you start using the Speech Devices SDK, you'll need to:
2929
- Download the latest version of the [Speech Devices SDK](https://aka.ms/sdsdk-download), and extract the .zip to your working directory.
3030

3131
> [!NOTE]
32-
> The Android-Sample-Release.zip file includes the Android sample app and this quickstart assumes that the app is extracted to C:\SDSDK\Android-Sample-Release
32+
> This quickstart assumes that the app is extracted to C:\SDSDK\Android-Sample-Release
3333
3434
- To get an [Azure subscription key for Speech service](get-started.md)
3535

@@ -78,6 +78,29 @@ To validate your development kit setup, build and install the sample application
7878

7979
1. Go to C:\SDSDK\Android-Sample-Release\example. Select **OK** to open the example project.
8080

81+
1. Configure gradle to reference the Speech SDK. The following files can be found under **Gradle Scripts** in Android Studio.
82+
83+
Update the **build.gradle(Project:example)**, the allprojects block should match below, by adding the maven lines.
84+
85+
```xml
86+
allprojects {
87+
repositories {
88+
google()
89+
jcenter()
90+
mavenCentral()
91+
maven {
92+
url 'https://csspeechstorage.blob.core.windows.net/maven/'
93+
}
94+
}
95+
}
96+
```
97+
98+
Update the **build.gradle(Module:app)** by adding this line to the dependencies section.
99+
100+
```xml
101+
implementation'com.microsoft.cognitiveservices.speech:client-sdk:1.9.0'
102+
```
103+
81104
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
82105

83106
For speech and LUIS, your information goes into MainActivity.java:

articles/cognitive-services/Speech-Service/speech-devices-sdk.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: speech-service
1111
ms.topic: conceptual
12-
ms.date: 07/05/2019
12+
ms.date: 02/12/2020
1313
ms.author: erhopf
1414
---
1515

@@ -45,6 +45,8 @@ The application is built with the Speech SDK package, and the Eclipse Java IDE (
4545
For Linux the sample application is provided as a cross-platform Java application. Download the latest version of the [JRE Speech Devices SDK](https://aka.ms/sdsdk-download-JRE).
4646
The application is built with the Speech SDK package, and the Eclipse Java IDE (v4) on 64-bit Linux (Ubuntu 16.04, Ubuntu 18.04, Debian 9). It runs on a 64-bit Java 8 runtime environment (JRE).
4747

48+
Additional binaries are provided to support upcoming devices, [Roobo v2 DDK](https://aka.ms/sdsdk-download-roobov2) and [Urbetter DDK](https://aka.ms/sdsdk-download-urbetter).
49+
4850
## Next steps
4951

5052
> [!div class="nextstepaction"]

0 commit comments

Comments
 (0)