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

Unverified Commit 506f61a1 authored by Bin Chen's avatar Bin Chen Committed by Michael Bestas
Browse files

Telecomm: Add missing CMSDK dependencies in tests

The tests package has missing dependencies on the CMSDK,
resulting in compilation errors.

Add org.cyanogenmod.platform.internal to
LOCAL_STATIC_JAVA_LIBRARIES to fix the errors:

ERROR: /packages/services/Telecomm/src/com/android/server/telecom/Ringer.java:30: The import cyanogenmod cannot be resolved
ERROR: /packages/services/Telecomm/src/com/android/server/telecom/Ringer.java:131: CMSettings cannot be resolved
...
ERROR: /packages/services/Telecomm/src/com/android/server/telecom/ui/MissedCallNotifierImpl.java:84: The import cyanogenmod cannot be resolved
ERROR: /packages/services/Telecomm/src/com/android/server/telecom/ui/MissedCallNotifierImpl.java:578: CMSettings cannot be resolved

Change-Id: Ic5f190300fce44fec6be871ccfce53d57fcf86f5
parent 7f9c7434
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,7 +23,8 @@ LOCAL_STATIC_JAVA_LIBRARIES := \
        guava \
        mockito-target \
        ims-ext-common \
        platform-test-annotations
        platform-test-annotations \
        org.cyanogenmod.platform.internal

LOCAL_SRC_FILES := \
        $(call all-java-files-under, src) \