Merge "Ignores static shared libraries when filtering app"

This commit is contained in:
TreeHugger Robot
2020-01-23 18:56:44 +00:00
committed by Android (Google) Code Review

View File

@@ -511,6 +511,10 @@ public class AppsFilter {
}
return true;
}
if (targetPkg.isStaticSharedLibrary()) {
// not an app, this filtering takes place at a higher level
return false;
}
final String targetName = targetPkg.getPackageName();
Trace.beginSection("getAppId");
final int callingAppId;