forked from CyanogenMod/android_packages_apps_InCallUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
25 lines (18 loc) · 728 Bytes
/
Android.mk
File metadata and controls
25 lines (18 loc) · 728 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_MODULE_TAGS := optional
# Need to specify an invalid resoure path to avoid including resource
LOCAL_RESOURCE_DIR := res_none
# Without any resource, we don't depend on framework-res in the build
# system, but we actually do to compile AndroidManifest.xml. Avoid
# the issue by setting an SDK version to compile against a historical
# SDK.
LOCAL_SDK_VERSION := 19
LOCAL_JNI_SHARED_LIBRARIES := libvt_jni libimscamera_jni
LOCAL_REQUIRED_MODULES := libvt_jni libimscamera_jni
LOCAL_PACKAGE_NAME := InCallUI
LOCAL_CERTIFICATE := shared
LOCAL_PRIVELEGED_MODULE := false
include $(BUILD_PACKAGE)
# Build the test package
include $(call all-makefiles-under,$(LOCAL_PATH))