Loading services/core/java/com/android/server/pm/PackageManagerService.java +6 −1 Original line number Diff line number Diff line Loading @@ -6140,8 +6140,13 @@ public class PackageManagerService extends IPackageManager.Stub { } final String nativeLibraryPath = (new File(libDir, apkName)).getPath(); pkg.applicationInfo.nativeLibraryDir = nativeLibraryPath; // pkgSetting might be null during rescan following uninstall of updates // to a bundled app, so accommodate that possibility. The settings in // that case will be established later from the parsed package. if (pkgSetting != null) { pkgSetting.nativeLibraryPathString = nativeLibraryPath; } } // Deduces the required ABI of an upgraded system app. private void setInternalAppAbi(PackageParser.Package pkg, PackageSetting pkgSetting) { Loading Loading
services/core/java/com/android/server/pm/PackageManagerService.java +6 −1 Original line number Diff line number Diff line Loading @@ -6140,8 +6140,13 @@ public class PackageManagerService extends IPackageManager.Stub { } final String nativeLibraryPath = (new File(libDir, apkName)).getPath(); pkg.applicationInfo.nativeLibraryDir = nativeLibraryPath; // pkgSetting might be null during rescan following uninstall of updates // to a bundled app, so accommodate that possibility. The settings in // that case will be established later from the parsed package. if (pkgSetting != null) { pkgSetting.nativeLibraryPathString = nativeLibraryPath; } } // Deduces the required ABI of an upgraded system app. private void setInternalAppAbi(PackageParser.Package pkg, PackageSetting pkgSetting) { Loading