[Bug 785406] android: gstjniutils.c fails to find application class loader provider on Android 7.0

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Wed Jul 26 22:29:31 UTC 2017


https://bugzilla.gnome.org/show_bug.cgi?id=785406

--- Comment #8 from Jeremi Wójcicki <jeremi.wojcicki at gmail.com> ---
My bad! I updated the code and here's the result:

07-27 00:26:03.051 3325-3542/org.freedesktop.gstreamer.tutorials.tutorial_3
E/GST_log: module open - True
07-27 00:26:03.052 3325-3542/org.freedesktop.gstreamer.tutorials.tutorial_3
E/GST_log: symbol - False
07-27 00:26:03.052 3325-3542/org.freedesktop.gstreamer.tutorials.tutorial_3
I/GST_log: Hello function

Just for reference I enclose the updated code:

void g_module_test() {
    GModule *m;
    gpointer ptr;
    m = g_module_open(NULL, G_MODULE_BIND_LOCAL);
    if (!m) {
        LOG_ERROR("module open - False");
    } else {
        LOG_ERROR("module open - True");
    }

    if (!g_module_symbol(m, "hello_fcn", &ptr)) {
        LOG_ERROR("symbol - False");
    } else {
        LOG_ERROR("symbol - True");
    }
    hello_fcn();
}

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list