diff options
| author | TreeHugger Robot <treehugger-gerrit@google.com> | 2018-01-11 23:11:29 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-01-11 23:11:29 +0000 |
| commit | e8df5cd9d88cc3f4e34828ee12ddabd10f533245 (patch) | |
| tree | 6119794fba0182cc5ec72790d0be83daf5b92492 /core/java | |
| parent | 0b2249786f438b3c3f16dfff5bcf6fb50e10ece2 (diff) | |
| parent | c170e20c6f8ff40876887f3d74e2caec0caef6f5 (diff) | |
Merge changes I0b5152d7,I00a6f1cd
* changes:
Temporary debugging
Remove scanPackageInternal()
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/content/pm/PackageParser.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/content/pm/PackageParser.java b/core/java/android/content/pm/PackageParser.java index 51087c353280..8088ab5223cc 100644 --- a/core/java/android/content/pm/PackageParser.java +++ b/core/java/android/content/pm/PackageParser.java @@ -811,6 +811,8 @@ public class PackageParser { public static final int PARSE_MUST_BE_APK = 1 << 0; public static final int PARSE_IGNORE_PROCESSES = 1 << 1; + /** @deprecated forward lock no longer functional. remove. */ + @Deprecated public static final int PARSE_FORWARD_LOCK = 1 << 2; public static final int PARSE_EXTERNAL_STORAGE = 1 << 3; public static final int PARSE_IS_SYSTEM_DIR = 1 << 4; @@ -6001,6 +6003,8 @@ public class PackageParser { } } + /** @deprecated Forward locked apps no longer supported. Resource path not needed. */ + @Deprecated public void setApplicationInfoResourcePath(String resourcePath) { this.applicationInfo.setResourcePath(resourcePath); if (childPackages != null) { @@ -6011,6 +6015,8 @@ public class PackageParser { } } + /** @deprecated Forward locked apps no longer supported. Resource path not needed. */ + @Deprecated public void setApplicationInfoBaseResourcePath(String resourcePath) { this.applicationInfo.setBaseResourcePath(resourcePath); if (childPackages != null) { @@ -6059,6 +6065,8 @@ public class PackageParser { // Children have no splits } + /** @deprecated Forward locked apps no longer supported. Resource path not needed. */ + @Deprecated public void setApplicationInfoSplitResourcePaths(String[] resroucePaths) { this.applicationInfo.setSplitResourcePaths(resroucePaths); // Children have no splits |
