summaryrefslogtreecommitdiff
path: root/Android.mk
blob: 86924120cae137d6764ab2b077ee9f01a71eb099 (plain)
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
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_STATIC_JAVA_LIBRARIES := \
    android-support-annotations \
    guava \
    jsr305 \

# Don't build anything, the needed system APIs have been removed.
#LOCAL_SRC_FILES := $(call all-java-files-under, src)
#LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res

LOCAL_PACKAGE_NAME := NetworkRecommendation
LOCAL_CERTIFICATE := platform
LOCAL_PRIVILEGED_MODULE := true

LOCAL_SDK_VERSION := system_current

LOCAL_PROGUARD_FLAG_FILES := proguard.flags

# Set to false to allow iteration via adb install rather than having to
# continaully reflash a test device.
LOCAL_DEX_PREOPT := false

include $(BUILD_PACKAGE)

# This finds and builds the test apk as well, so a single make does both.
#include $(call all-makefiles-under,$(LOCAL_PATH))