Closed mohanadHamed closed 10 months ago
The issue has been fixed by loading native inference engine library at application start:
protected void onCreate(Bundle savedInstanceState) {
.
.
.
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
.
.
.
}
After adding the release file
openvino-2023.0-android-arm64-v8a.aar
to my android studio project, I get the following runtime error when the execution reaches the lineorg.intel.openvino.Core core = new org.intel.openvino.Core();
:Any clue how to fix? Thanks.