Skip to content

Commit e0671ef

Browse files
authored
Use ort-extensions version 0.11.0 in whisper/azure/android example. (#462)
1 parent 009920d commit e0671ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mobile/examples/whisper/azure/android/app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ dependencies {
4242
implementation ("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.2")
4343

4444
implementation 'com.microsoft.onnxruntime:onnxruntime-android:latest.release'
45-
implementation 'com.microsoft.onnxruntime:onnxruntime-extensions-android:latest.release'
45+
// Later onnxruntime-extensions versions don't have com.microsoft.extensions:OpenAIAudioToText which is required
46+
// for this example, so pin the version to 0.11.0.
47+
implementation 'com.microsoft.onnxruntime:onnxruntime-extensions-android:0.11.0'
4648

4749
testImplementation 'junit:junit:4.13.2'
4850
androidTestImplementation 'androidx.test.ext:junit:1.1.5'

0 commit comments

Comments
 (0)