mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-01 03:45:06 +00:00
[js/rn] set minSdkVersion to 21 for ORT-RN Android (#11403)
This commit is contained in:
parent
5023f6750b
commit
d306e00351
3 changed files with 3 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ android {
|
|||
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
||||
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
||||
defaultConfig {
|
||||
minSdkVersion 24
|
||||
minSdkVersion getExtOrIntegerDefault('minSdkVersion')
|
||||
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
|
|
|||
|
|
@ -15,4 +15,5 @@ android.enableJetifier=true
|
|||
android.useAndroidX=true
|
||||
OnnxruntimeModule_buildToolsVersion=29.0.2
|
||||
OnnxruntimeModule_compileSdkVersion=29
|
||||
OnnxruntimeModule_minSdkVersion=21
|
||||
OnnxruntimeModule_targetSdkVersion=29
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
buildscript {
|
||||
ext {
|
||||
buildToolsVersion = "29.0.2"
|
||||
minSdkVersion = 24
|
||||
minSdkVersion = 21
|
||||
compileSdkVersion = 29
|
||||
targetSdkVersion = 29
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue