diff options
author | Jeff Sharkey <jsharkey@android.com> | 2014-10-09 13:03:07 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-09 13:03:07 +0000 |
commit | b424849533ac369c41a824510a8f3914f62ed2c6 (patch) | |
tree | 808f394b3ae3d2b4d0a487800d28aefb860b6f5d | |
parent | 437e5c9c9a994efe795e72ffe4721055f077c4cf (diff) | |
parent | b01a5ba2b7c1bc22e30d6cc16c30f8e1215701cd (diff) | |
download | frameworks_base-b424849533ac369c41a824510a8f3914f62ed2c6.zip frameworks_base-b424849533ac369c41a824510a8f3914f62ed2c6.tar.gz frameworks_base-b424849533ac369c41a824510a8f3914f62ed2c6.tar.bz2 |
am b01a5ba2: am 562262cc: Merge "Bring along more ApplicationInfo fields." into lmp-dev
* commit 'b01a5ba2b7c1bc22e30d6cc16c30f8e1215701cd':
Bring along more ApplicationInfo fields.
-rw-r--r-- | core/java/android/content/pm/ApplicationInfo.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/content/pm/ApplicationInfo.java b/core/java/android/content/pm/ApplicationInfo.java index 548a0c9..e07edba 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -683,6 +683,8 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { requiresSmallestWidthDp = orig.requiresSmallestWidthDp; compatibleWidthLimitDp = orig.compatibleWidthLimitDp; largestWidthLimitDp = orig.largestWidthLimitDp; + scanSourceDir = orig.scanSourceDir; + scanPublicSourceDir = orig.scanPublicSourceDir; sourceDir = orig.sourceDir; publicSourceDir = orig.publicSourceDir; splitSourceDirs = orig.splitSourceDirs; @@ -731,6 +733,8 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { dest.writeInt(requiresSmallestWidthDp); dest.writeInt(compatibleWidthLimitDp); dest.writeInt(largestWidthLimitDp); + dest.writeString(scanSourceDir); + dest.writeString(scanPublicSourceDir); dest.writeString(sourceDir); dest.writeString(publicSourceDir); dest.writeStringArray(splitSourceDirs); @@ -778,6 +782,8 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { requiresSmallestWidthDp = source.readInt(); compatibleWidthLimitDp = source.readInt(); largestWidthLimitDp = source.readInt(); + scanSourceDir = source.readString(); + scanPublicSourceDir = source.readString(); sourceDir = source.readString(); publicSourceDir = source.readString(); splitSourceDirs = source.readStringArray(); |