33510c07f3
Add C++ library for access to ConnectivityManager's markSocketAsUser. Change-Id: Icb9faa5be8c11d10e5c4a3bf95d338319449399c
14 lines
230 B
Makefile
14 lines
230 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= ConnectivityManager.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder
|
|
|
|
LOCAL_MODULE:= libconnectivitymanager
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|