diff options
author | Paul Keith <javelinanddart@gmail.com> | 2018-07-08 21:50:02 +0200 |
---|---|---|
committer | Paul Keith <javelinanddart@gmail.com> | 2018-07-10 17:12:56 +0200 |
commit | b32bdc9bc81f5865a5503f8c3dded2946c3c20bf (patch) | |
tree | 641c21d6e37f5901046ea06a53e8a7e0c57d00a4 | |
parent | 208646f7836a5ae641594bbab9ec804ff48eb8de (diff) | |
download | android_hardware_lineage_telephony-b32bdc9bc81f5865a5503f8c3dded2946c3c20bf.tar.gz android_hardware_lineage_telephony-b32bdc9bc81f5865a5503f8c3dded2946c3c20bf.tar.bz2 android_hardware_lineage_telephony-b32bdc9bc81f5865a5503f8c3dded2946c3c20bf.zip |
Allow opting out of building this jar
* Some devices provide a custom jar with more extensions
-rw-r--r-- | Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -16,6 +16,7 @@ LOCAL_PATH := $(call my-dir) +ifeq ($(TARGET_PROVIDES_QTI_TELEPHONY_JAR),) include $(CLEAR_VARS) LOCAL_MODULE := qti-telephony-common LOCAL_JAVA_LIBRARIES := telephony-common telephony-ext @@ -23,3 +24,4 @@ LOCAL_SRC_FILES := $(call all-java-files-under,src) LOCAL_MODULE_TAGS := optional LOCAL_DEX_PREOPT := false include $(BUILD_JAVA_LIBRARY) +endif |