1234567891011121314151617181920212223242526272829303132 |
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
- LOCAL_MODULE_TAGS := tests
- LOCAL_STATIC_JAVA_LIBRARIES := android-support-test ub-uiautomator mockito-target-minus-junit4
- LOCAL_SRC_FILES := $(call all-java-files-under, src)
- LOCAL_FULL_LIBS_MANIFEST_FILES := $(LOCAL_PATH)/AndroidManifest-common.xml
- LOCAL_SDK_VERSION := current
- LOCAL_MIN_SDK_VERSION := 21
- LOCAL_PACKAGE_NAME := Launcher3Tests
- LOCAL_INSTRUMENTATION_FOR := Launcher3
- include $(BUILD_PACKAGE)
|