summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Android.bp3
-rw-r--r--FaceDetector_jni.cpp7
2 files changed, 7 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index 0291f97..1121f27 100644
--- a/Android.bp
+++ b/Android.bp
@@ -145,6 +145,9 @@ cc_library_shared {
"libcutils",
],
+ whole_static_libs: [
+ "libc++fs",
+ ],
required: [
"RFFspeed_501.bmd",
diff --git a/FaceDetector_jni.cpp b/FaceDetector_jni.cpp
index 650cbf0..1741195 100644
--- a/FaceDetector_jni.cpp
+++ b/FaceDetector_jni.cpp
@@ -15,6 +15,7 @@
*/
#include <assert.h>
+#include <filesystem>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
@@ -119,9 +120,9 @@ initialize(JNIEnv *_env, jobject _this,
{
// load the configuration file
const char* root = getenv("ANDROID_ROOT");
- String8 path(root);
- path.appendPath("usr/share/bmd/RFFstd_501.bmd");
- // path.appendPath("usr/share/bmd/RFFspeed_501.bmd");
+ std::filesystem::path path(root);
+ path /= "usr/share/bmd/RFFstd_501.bmd";
+ // path /= "usr/share/bmd/RFFspeed_501.bmd";
const int MAX_FILE_SIZE = 65536;
void* initData = malloc( MAX_FILE_SIZE ); /* enough to fit entire file */