You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -858,6 +858,7 @@ class AppsProvider with ChangeNotifier {
858
858
ext,
859
859
APKDir.path,
860
860
);
861
+
// ignore: use_build_context_synchronously
861
862
String? userFileName =awaitpromptForFileName(
862
863
context,
863
864
suggestedName,
@@ -1426,6 +1427,7 @@ class AppsProvider with ChangeNotifier {
1426
1427
);
1427
1428
1428
1429
try {
1430
+
// ignore: use_build_context_synchronously
1429
1431
var wasInstalled =awaitinstallApk(
1430
1432
DownloadedApk(dir.appId, selectedApks[0]),
1431
1433
firstTimeWithContext,
@@ -3169,9 +3171,9 @@ class _APKOriginWarningDialogState extends State<APKOriginWarningDialog> {
3169
3171
3170
3172
/// Background updater function
3171
3173
///
3172
-
/// @param List<MapEntry<String, int>>? toCheck: The appIds to check for updates (with the number of previous attempts made per appid) (defaults to all apps)
3174
+
/// @param `List<MapEntry<String, int>>?` toCheck: The appIds to check for updates (with the number of previous attempts made per appid) (defaults to all apps)
3173
3175
///
3174
-
/// @param List<String>? toInstall: The appIds to attempt to update (if empty - which is the default - all pending updates are taken)
3176
+
/// @param `List<String>?` toInstall: The appIds to attempt to update (if empty - which is the default - all pending updates are taken)
3175
3177
///
3176
3178
/// When toCheck is empty, the function is in "install mode" (else it is in "update mode").
3177
3179
/// In update mode, all apps in toCheck are checked for updates (in parallel).
0 commit comments