forked from LineageOS/android_packages_apps_Eleven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.mk
43 lines (32 loc) · 1.09 KB
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := src/com/cyanogenmod/eleven/IElevenService.aidl
LOCAL_SRC_FILES += $(call all-java-files-under, src)
LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, res) \
$(TOP)/frameworks/support/v7/cardview/res \
$(TOP)/frameworks/support/v7/recyclerview/res
LOCAL_STATIC_JAVA_LIBRARIES := \
android-support-v8-renderscript \
android-support-v7-palette \
android-support-v7-cardview \
android-common \
android-support-v4 \
android-support-v7-recyclerview \
guava
LOCAL_AAPT_FLAGS := \
--auto-add-overlay \
--extra-packages android.support.v7.cardview \
--extra-packages android.support.v7.recyclerview
LOCAL_PACKAGE_NAME := Eleven
LOCAL_OVERRIDES_PACKAGES := Music
LOCAL_JNI_SHARED_LIBRARIES := librsjni
LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.cfg
ifeq ($(TARGET_BUILD_VARIANT),user)
LOCAL_PROGUARD_ENABLED := obfuscation
else
LOCAL_PROGUARD_ENABLED := disabled
endif
include $(BUILD_PACKAGE)
include $(CLEAR_VARS)
include $(BUILD_MULTI_PREBUILT)