Loading src/com/android/packageinstaller/permission/model/PermissionGroups.java +3 −2 Original line number Diff line number Diff line Loading @@ -212,11 +212,12 @@ public final class PermissionGroups implements LoaderCallbacks<List<PermissionGr } private Drawable loadItemInfoIcon(PackageItemInfo itemInfo) { final Drawable icon; Drawable icon = null; if (itemInfo.icon > 0) { icon = Utils.loadDrawable(getContext().getPackageManager(), itemInfo.packageName, itemInfo.icon); } else { } if (icon == null) { icon = getContext().getDrawable(R.drawable.ic_perm_device_info); } return icon; Loading Loading
src/com/android/packageinstaller/permission/model/PermissionGroups.java +3 −2 Original line number Diff line number Diff line Loading @@ -212,11 +212,12 @@ public final class PermissionGroups implements LoaderCallbacks<List<PermissionGr } private Drawable loadItemInfoIcon(PackageItemInfo itemInfo) { final Drawable icon; Drawable icon = null; if (itemInfo.icon > 0) { icon = Utils.loadDrawable(getContext().getPackageManager(), itemInfo.packageName, itemInfo.icon); } else { } if (icon == null) { icon = getContext().getDrawable(R.drawable.ic_perm_device_info); } return icon; Loading