-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathAndroid.mk
More file actions
32 lines (23 loc) · 837 Bytes
/
Android.mk
File metadata and controls
32 lines (23 loc) · 837 Bytes
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
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_PROGUARD_FLAG_FILES := proguard.cfg
LOCAL_MODULE_TAGS := optional
LOCAL_STATIC_JAVA_LIBRARIES := \
android-support-v13 \
android-support-v4 \
AndroidAsync \
gson \
jsr305 \
org.lineageos.platform.internal
LOCAL_SRC_FILES := $(call all-subdir-java-files, src)
LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, res)
LOCAL_PACKAGE_NAME := ROMControl
LOCAL_CERTIFICATE := platform
LOCAL_PRIVILEGED_MODULE := true
include frameworks/opt/setupwizard/navigationbar/common.mk
include frameworks/opt/setupwizard/library/common.mk
include frameworks/base/packages/SettingsLib/common.mk
LOCAL_JAVA_LIBRARIES += org.lineageos.hardware
include $(BUILD_PACKAGE)
# Use the following include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))