forked from AOKP/packages_apps_ROMControl
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroid.mk
More file actions
25 lines (18 loc) · 995 Bytes
/
Android.mk
File metadata and controls
25 lines (18 loc) · 995 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
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
LOCAL_SRC_FILES := $(call all-subdir-java-files)
LOCAL_PACKAGE_NAME := ROMControl
LOCAL_CERTIFICATE := platform
include $(BUILD_PACKAGE)
# include java jar used by CardsUI
include $(CLEAR_VARS)
LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := nineoldandroids-2.4.0:../../../external/jbirdvegas/mGerrit/libs/nineoldandroids-2.4.0.jar
LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES += volley_lib:../../../external/jbirdvegas/mGerrit/libs/volley.jar
LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES += gson-2.2.4:../../../external/jbirdvegas/mGerrit/libs/gson-2.2.4.jar
LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES += hack_android-support-v4:../../../external/jbirdvegas/mGerrit/libs/android-support-v4.jar
include $(BUILD_MULTI_PREBUILT)
# Use the folloing include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))