csukuangfj's picture
pre-downloaded libs
0a9fe68
---
license: apache-2.0
---
# Introduction
Libraries in this repository are intended for use in
https://github.com/k2-fsa/sherpa-onnx
They are downloaded from
https://mvnrepository.com/artifact/com.microsoft.onnxruntime/onnxruntime-android/1.14.0
```
wget https://repo1.maven.org/maven2/com/microsoft/onnxruntime/onnxruntime-android/1.14.0/onnxruntime-android-1.14.0.aar
mv onnxruntime-android-1.14.0.aar onnxruntime-android-1.14.0.zip
unzip onnxruntime-android-1.14.0.zip
cd onnxruntime-android-1.14.0
tree .
```
```
.
β”œβ”€β”€ AndroidManifest.xml
β”œβ”€β”€ R.txt
β”œβ”€β”€ arm64-v8a
β”œβ”€β”€ armeabi-v7a
β”œβ”€β”€ classes.jar
β”œβ”€β”€ headers
β”‚Β Β  β”œβ”€β”€ cpu_provider_factory.h
β”‚Β Β  β”œβ”€β”€ nnapi_provider_factory.h
β”‚Β Β  β”œβ”€β”€ onnxruntime_c_api.h
β”‚Β Β  β”œβ”€β”€ onnxruntime_cxx_api.h
β”‚Β Β  └── onnxruntime_cxx_inline.h
β”œβ”€β”€ jni
β”‚Β Β  β”œβ”€β”€ arm64-v8a
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ libonnxruntime.so
β”‚Β Β  β”‚Β Β  └── libonnxruntime4j_jni.so
β”‚Β Β  β”œβ”€β”€ armeabi-v7a
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ libonnxruntime.so
β”‚Β Β  β”‚Β Β  └── libonnxruntime4j_jni.so
β”‚Β Β  β”œβ”€β”€ x86
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ libonnxruntime.so
β”‚Β Β  β”‚Β Β  └── libonnxruntime4j_jni.so
β”‚Β Β  └── x86_64
β”‚Β Β  β”œβ”€β”€ libonnxruntime.so
β”‚Β Β  └── libonnxruntime4j_jni.so
β”œβ”€β”€ x86
└── x86_64
10 directories, 16 files
```