diff options
| author | Brian Carlstrom <bdc@google.com> | 2014-05-07 13:19:28 -0700 |
|---|---|---|
| committer | Brian Carlstrom <bdc@google.com> | 2014-05-07 13:20:23 -0700 |
| commit | 3bbef521d4b07f86010ba0729a36ff8b73bcb0ac (patch) | |
| tree | ababc0f3b85480a1ceabdacd8664098ad1398639 /core/java | |
| parent | 424edf064fb705b07f5f7d41e875dd2b24ccf271 (diff) | |
| parent | f2db00fdcd4e3dd97afd071f3af058d307a152f9 (diff) | |
resolved conflicts for merge of f2db00fd to klp-modular-dev-plus-aosp
Change-Id: I745164033962f6222832f8f19fa316a2e2634fd0
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/content/pm/PackageParser.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/core/java/android/content/pm/PackageParser.java b/core/java/android/content/pm/PackageParser.java index 66d4f500410f..66b2bb2dc45e 100644 --- a/core/java/android/content/pm/PackageParser.java +++ b/core/java/android/content/pm/PackageParser.java @@ -3565,10 +3565,13 @@ public class PackageParser { // For use by the package manager to keep track of the path to the // file an app came from. public String mScanPath; - - // For use by package manager to keep track of where it has done dexopt. - public boolean mDidDexOpt; - + + // For use by package manager to keep track of where it needs to do dexopt. + public boolean mDexOptNeeded = true; + + // For use by package manager to keep track of when a package was last used. + public long mLastPackageUsageTimeInMills; + // // User set enabled state. // public int mSetEnabled = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT; // |
