Home | History | Annotate | Download | only in NetworkRecommendation
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_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 
     13 LOCAL_PACKAGE_NAME := NetworkRecommendation
     14 LOCAL_CERTIFICATE := platform
     15 LOCAL_PRIVILEGED_MODULE := true
     16 
     17 LOCAL_SDK_VERSION := system_current
     18 
     19 LOCAL_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.
     23 LOCAL_DEX_PREOPT := false
     24 
     25 include $(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