Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 971ed59d authored by Nicolas Geoffray's avatar Nicolas Geoffray Committed by android-build-merger
Browse files

Merge "libnativeloader: remove stubs for now."

am: 3ec40818

Change-Id: I7a1ebedb11a12e616a62ce40aa92cbe3ec4c672d
parents 81ce79e8 3ec40818
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -23,15 +23,6 @@ cc_library {
        "llndk.libraries.txt",
        "vndksp.libraries.txt",
    ],
    target: {
        android: {
            version_script: "libnativeloader.map.txt",
        },
    },
    stubs: {
        symbol_file: "libnativeloader.map.txt",
        versions: ["1"],
    },
}

cc_library_headers {
+1 −1
Original line number Diff line number Diff line
@@ -632,7 +632,7 @@ void* OpenNativeLibrary(JNIEnv* env, int32_t target_sdk_version, const char* pat
    *needs_native_bridge = false;
    void* handle = dlopen(path, RTLD_NOW);
    if (handle == nullptr) {
      *error_msg = dlerror();
      *error_msg = strdup(dlerror());
    }
    return handle;
  }