implement PackageManager.getLaunchIntentForPackage()

fixes a crash after importing a NewPipe backup
This commit is contained in:
Julian Winkler
2025-01-12 09:59:23 +01:00
parent 99c1e1ee94
commit 62c964e8bd
2 changed files with 15 additions and 0 deletions

View File

@@ -368,4 +368,9 @@ public class Intent implements Parcelable {
public void removeExtra(String name) {
extras.remove(name);
}
public Intent putParcelableArrayListExtra(String name, ArrayList<? extends Parcelable> value) {
extras.putParcelableArrayList(name, value);
return this;
}
}