aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinay Verma <vvinay@codeaurora.org>2018-05-24 19:40:51 +0530
committerRAJATH R <rajathr@codeaurora.org>2018-06-18 18:08:53 +0530
commite23ee25163bf7b3f7f2ecab3a89f5a48ff87e171 (patch)
treee0e55c27b2f23a24926ae8e24b28d97e5b225e0d
parentb616838fc8c89085742a542d528e2fd55d679ef9 (diff)
downloadandroid_external_ant-wireless_ant_service-e23ee25163bf7b3f7f2ecab3a89f5a48ff87e171.tar.gz
android_external_ant-wireless_ant_service-e23ee25163bf7b3f7f2ecab3a89f5a48ff87e171.tar.bz2
android_external_ant-wireless_ant_service-e23ee25163bf7b3f7f2ecab3a89f5a48ff87e171.zip
Define LOCAL_SDK_VERSION for ant_service module
For System SDK compliance either of two flags should be defined for all Android APK's LOCAL_SDK_VERSION Or LOCAL_PRIVATE_PLATFORM_APIS LOCAL_SDK_VERSION supports two values current and system_current. "current" will compile APK code with SDK API's and system_current will compile code with SDK + System API's LOCAL_PRIVATE_PLATFORM_APIS will compile APK code with platform API's, this option enables to use hidden platform API's in APK. This flag cannot be defined for vendor APK's. Change-Id: I0b43c2e79d22a02dfad089790214090ce2f53d99
-rw-r--r--Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 2169f06..092ffb7 100644
--- a/Android.mk
+++ b/Android.mk
@@ -34,7 +34,9 @@ LOCAL_PROGUARD_FLAG_FILES := proguard.flags
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_TAGS := optional
LOCAL_PACKAGE_NAME := AntHalService
-
+ifeq ($(filter 8% O% o%,$(TARGET_PLATFORM_VERSION)),)
+LOCAL_SDK_VERSION := system_current
+endif
include $(BUILD_PACKAGE)
endif # BOARD_ANT_WIRELESS_DEVICE defined