• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_STATIC_JAVA_LIBRARIES := \
5    android-support-annotations \
6    guava \
7    jsr305 \
8
9# Don't build anything, the needed system APIs have been removed.
10#LOCAL_SRC_FILES := $(call all-java-files-under, src)
11#LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
12
13LOCAL_PACKAGE_NAME := NetworkRecommendation
14LOCAL_CERTIFICATE := platform
15LOCAL_PRIVILEGED_MODULE := true
16
17LOCAL_SDK_VERSION := system_current
18
19LOCAL_PROGUARD_FLAG_FILES := proguard.flags
20
21# Set to false to allow iteration via adb install rather than having to
22# continaully reflash a test device.
23LOCAL_DEX_PREOPT := false
24
25include $(BUILD_PACKAGE)
26
27# This finds and builds the test apk as well, so a single make does both.
28#include $(call all-makefiles-under,$(LOCAL_PATH))
29