From 1a568061137d18661245fbb10110583bd7ba952a Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Tue, 23 Aug 2022 16:23:26 -0400 Subject: [PATCH] A comment --- lib/services/apps_provider.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/services/apps_provider.dart b/lib/services/apps_provider.dart index 9c4a00b..99f86f3 100644 --- a/lib/services/apps_provider.dart +++ b/lib/services/apps_provider.dart @@ -106,7 +106,9 @@ class AppsProvider with ChangeNotifier { 'Complete App Installation', 'Asks the user to return to Obtanium to finish installing an App'); while (await FGBGEvents.stream.first != FGBGType.foreground) { - // We need to wait for the App to come to the foreground since the APK installer doesn't work otherwise + // We need to wait for the App to come to the foreground to install it + // Can't try to call install plugin in a background isolate (may not have worked anyways) because of: + // https://github.com/flutter/flutter/issues/13937 } }