Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e5d867e authored by Mike Lockwood's avatar Mike Lockwood
Browse files

Add support for overriding default Java libraries on a per-target basis

Change-Id: I425041554867a7ed7d74e1d603f160b2110bc86b
parent ee074882
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -43,7 +43,10 @@ ifneq ($(LOCAL_SDK_VERSION),)
  endif
else
  ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
    LOCAL_JAVA_LIBRARIES := core core-junit ext framework framework2 $(LOCAL_JAVA_LIBRARIES)
    ifeq (TARGET_DEFAULT_JAVA_LIBRARIES,)
      TARGET_DEFAULT_JAVA_LIBRARIES := core core-junit ext framework framework2
    endif
    LOCAL_JAVA_LIBRARIES := $(TARGET_DEFAULT_JAVA_LIBRARIES) $(LOCAL_JAVA_LIBRARIES)
  endif
endif