mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Do not crash when selecting an APK from storage (#1768)
This commit is contained in:
parent
f9e6ef3fd3
commit
8564c1a72e
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||
try {
|
||||
final String? result = await FlutterFileDialog.pickFile(
|
||||
params: const OpenFileDialogParams(
|
||||
fileExtensionsFilter: ['apk'],
|
||||
mimeTypesFilter: ['application/vnd.android.package-archive'],
|
||||
),
|
||||
);
|
||||
if (result != null) {
|
||||
|
|
Loading…
Reference in a new issue