Merge "Add /apex to the list of allowed SystemServer paths" into rvc-dev am: 55815db140
Change-Id: I631ea10c94f0c02dc4b162159d9e89caa9fb9960
This commit is contained in:
@@ -232,6 +232,10 @@ public class DexManager {
|
||||
private boolean isSystemServerDexPathSupportedForOdex(String dexPath) {
|
||||
ArrayList<PackagePartitions.SystemPartition> partitions =
|
||||
PackagePartitions.getOrderedPartitions(identity());
|
||||
// First check the apex partition as it's not part of the SystemPartitions.
|
||||
if (dexPath.startsWith("/apex/")) {
|
||||
return true;
|
||||
}
|
||||
for (int i = 0; i < partitions.size(); i++) {
|
||||
if (partitions.get(i).containsPath(dexPath)) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user