diff options
author | Adam Lesinski <adamlesinski@google.com> | 2015-03-02 11:37:24 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2015-03-02 12:54:14 -0800 |
commit | 978a1ed5aa2752cd36ff51df91d2d2d8be2171d9 (patch) | |
tree | 4c383bf6ee66fd90b721fc670bb24a2d94fd15bd /api | |
parent | 5414d155e5ce3147f9db1b2ec6fb2dcd6473e089 (diff) | |
download | frameworks_base-978a1ed5aa2752cd36ff51df91d2d2d8be2171d9.zip frameworks_base-978a1ed5aa2752cd36ff51df91d2d2d8be2171d9.tar.gz frameworks_base-978a1ed5aa2752cd36ff51df91d2d2d8be2171d9.tar.bz2 |
Add generic "INTERACTION" event type to UsageStatsManager
This will allow for updating a package's last time used
property for packages that are interacted in ways other than
launching their activities (interacting with notifications, etc.)
Change-Id: Ic6f9519f46fa04abd37ea6fc9475bcd9ea721003
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | api/system-current.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 5e9520d..8a076aa 100644 --- a/api/current.txt +++ b/api/current.txt @@ -5773,6 +5773,7 @@ package android.app.usage { method public java.lang.String getPackageName(); method public long getTimeStamp(); field public static final int CONFIGURATION_CHANGE = 5; // 0x5 + field public static final int INTERACTION = 6; // 0x6 field public static final int MOVE_TO_BACKGROUND = 2; // 0x2 field public static final int MOVE_TO_FOREGROUND = 1; // 0x1 field public static final int NONE = 0; // 0x0 diff --git a/api/system-current.txt b/api/system-current.txt index c8a3c0f..bcdabb1 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -5952,6 +5952,7 @@ package android.app.usage { method public java.lang.String getPackageName(); method public long getTimeStamp(); field public static final int CONFIGURATION_CHANGE = 5; // 0x5 + field public static final int INTERACTION = 6; // 0x6 field public static final int MOVE_TO_BACKGROUND = 2; // 0x2 field public static final int MOVE_TO_FOREGROUND = 1; // 0x1 field public static final int NONE = 0; // 0x0 |