summaryrefslogtreecommitdiffstats
path: root/services/usage/Android.mk
diff options
context:
space:
mode:
authorAdam Lesinski <adamlesinski@google.com>2014-07-16 19:09:13 -0700
committerAdam Lesinski <adamlesinski@google.com>2014-07-18 15:24:20 -0700
commit0debc9aff4c0cbc28e083a948081d91b0f171319 (patch)
tree3ac4d7a9927cdd2741f65393d4e6855508ab3c26 /services/usage/Android.mk
parentd3de42cae84fadfa1befd082a2cf1bf72f9ad82a (diff)
downloadframeworks_base-0debc9aff4c0cbc28e083a948081d91b0f171319.zip
frameworks_base-0debc9aff4c0cbc28e083a948081d91b0f171319.tar.gz
frameworks_base-0debc9aff4c0cbc28e083a948081d91b0f171319.tar.bz2
First iteration of a public UsageStats API
UsageStats API that allows apps to get a list of packages that have been recently used, along with basic stats like how long they have been in the foreground and the most recent time they were running. Bug: 15165667 Change-Id: I2a2d1ff69bd0b5703ac3d9de1780df42ad90d439
Diffstat (limited to 'services/usage/Android.mk')
-rw-r--r--services/usage/Android.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/services/usage/Android.mk b/services/usage/Android.mk
new file mode 100644
index 0000000..d4b7fa8
--- /dev/null
+++ b/services/usage/Android.mk
@@ -0,0 +1,10 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := services.usage
+
+LOCAL_SRC_FILES += \
+ $(call all-java-files-under,java)
+
+include $(BUILD_STATIC_JAVA_LIBRARY)