Skip to content

Commit 023e677

Browse files
authored
Merge pull request #36 from Morteza-arifi/main
Update ONNX Runtime to 1.22.0 for 16KB page compatibility
2 parents 125958b + 8c12f4f commit 023e677

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

example/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ android {
99

1010
defaultConfig {
1111
compileSdk 35
12-
minSdkVersion 23
12+
minSdkVersion 24
1313
targetSdkVersion 35
14-
versionCode 18
15-
versionName "2.0.9"
14+
versionCode 19
15+
versionName "2.0.10"
1616

1717
setProperty("archivesBaseName", "Android-VAD-v" + versionName)
1818

@@ -27,12 +27,12 @@ android {
2727
}
2828

2929
compileOptions {
30-
sourceCompatibility JavaVersion.VERSION_1_8
31-
targetCompatibility JavaVersion.VERSION_1_8
30+
sourceCompatibility JavaVersion.VERSION_11
31+
targetCompatibility JavaVersion.VERSION_11
3232
}
3333

3434
kotlin {
35-
jvmToolchain(8)
35+
jvmToolchain(11)
3636
}
3737
}
3838

silero/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ android {
88

99
defaultConfig {
1010
compileSdk 35
11-
minSdkVersion 21
11+
minSdkVersion 24
1212
targetSdkVersion 35
13-
versionCode 18
14-
versionName "2.0.9"
13+
versionCode 19
14+
versionName "2.0.10"
1515

1616
setProperty("archivesBaseName", "android-vad-silero-v" + versionName)
1717

@@ -55,7 +55,7 @@ dependencies {
5555
implementation fileTree(dir: 'libs', include: ['*.jar'])
5656

5757
implementation(platform('org.jetbrains.kotlin:kotlin-bom:2.0.21'))
58-
implementation 'com.microsoft.onnxruntime:onnxruntime-android:1.20.0'
58+
implementation 'com.microsoft.onnxruntime:onnxruntime-android:1.22.0'
5959

6060
testImplementation 'junit:junit:4.13.2'
6161
androidTestImplementation 'androidx.test:runner:1.6.2'

webrtc/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ android {
88

99
defaultConfig {
1010
compileSdk 35
11-
minSdkVersion 16
11+
minSdkVersion 24
1212
targetSdkVersion 35
13-
versionCode 18
14-
versionName "2.0.9"
13+
versionCode 19
14+
versionName "2.0.10"
1515

1616
setProperty("archivesBaseName", "android-vad-webrtc-v" + versionName)
1717

18-
ndkVersion "21.4.7075529"
18+
ndkVersion "28.0.13004108"
1919

2020
ndk {
2121
abiFilters "armeabi-v7a", "x86", "x86_64", "arm64-v8a"

0 commit comments

Comments
 (0)