This cl set up the basic android framework for anomly test app. Anomaly test app has the similar architecture compared with settings api tester. 1. Add Android.mk and AndroidManifest.xml 2. Add blank AnomalyActivity 3. Add related resource files. Bug: 62602318 Test: make -j40 AnomalyTester Change-Id: I1d59517c9c2d8d0b8e219e3a67dfae73ca5a968e
16 lines
282 B
Makefile
16 lines
282 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
LOCAL_PACKAGE_NAME := AnomalyTester
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
include $(BUILD_PACKAGE) |