ad623015a1
- Events are obfuscated based on whether the app was instant or not at the time each event was logged. - UsageStats are obfuscated based on whether each app is instant or not at the moment. Bug 38202133 Test: Manual test using UsageStatsTest and instant apps Change-Id: I3c74309196b88d010d317cb0dd6749bf4624e876
16 lines
324 B
Makefile
16 lines
324 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
# Only compile source java files in this apk.
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_PACKAGE_NAME := UsageStatsTest
|
|
|
|
include $(BUILD_PACKAGE)
|