We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 862438e commit beeb71dCopy full SHA for beeb71d
drm/jni/Android.mk
@@ -26,8 +26,13 @@ LOCAL_SHARED_LIBRARIES := \
26
libutils \
27
libandroid_runtime \
28
libnativehelper \
29
- libbinder \
30
- libdl
+ libbinder
+
31
+ifeq ($(TARGET_SIMULATOR),true)
32
+ LOCAL_LDLIBS += -ldl
33
+else
34
+ LOCAL_SHARED_LIBRARIES += libdl
35
+endif
36
37
LOCAL_STATIC_LIBRARIES :=
38
drm/libdrmframework/Android.mk
@@ -25,8 +25,13 @@ LOCAL_MODULE:= libdrmframework
25
LOCAL_SHARED_LIBRARIES := \
LOCAL_STATIC_LIBRARIES := \
libdrmframeworkcommon
0 commit comments