Can shared library call another shared library?
Can one shared library load and call functions from another shared library? I have Shared library libDsmTestLib.so that use another shared libraries libDsmShared.so and libPINDsmShared.so LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := DsmTestLib LOCAL_SRC_FILES := DSM_Library.cpp LOCAL_LDLIBS := -lDsmShared LOCAL_LDLIBS += -lPINDsmShared include $(BUILD_SHARED_LIBRARY) when I create libDsmTestLib.so and want to use it in my android java application like this: package com.dsm; import android.app.Activity; import android.os.Bundle; public class dsmTest extends Activity { /**