We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009920d commit e0671efCopy full SHA for e0671ef
mobile/examples/whisper/azure/android/app/build.gradle
@@ -42,7 +42,9 @@ dependencies {
42
implementation ("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.2")
43
44
implementation 'com.microsoft.onnxruntime:onnxruntime-android:latest.release'
45
- implementation 'com.microsoft.onnxruntime:onnxruntime-extensions-android:latest.release'
+ // 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'
48
49
testImplementation 'junit:junit:4.13.2'
50
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
0 commit comments