Change sdp socket path to be compatible for Android.
diff --git a/include/bluetooth/sdp.h b/include/bluetooth/sdp.h
index 375261e..63cfcf0 100644
--- a/include/bluetooth/sdp.h
+++ b/include/bluetooth/sdp.h
@@ -32,8 +32,9 @@
 #endif
 
 #include <stdint.h>
+#include <cutils/sockets.h>
 
-#define SDP_UNIX_PATH "/var/run/sdp"
+#define SDP_UNIX_PATH ANDROID_SOCKET_DIR"/bluetooth"
 #define SDP_RESPONSE_TIMEOUT	20
 #define SDP_REQ_BUFFER_SIZE	2048
 #define SDP_RSP_BUFFER_SIZE	65535