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
I have a pretty simple app who's root is using CupertinoApp, and when I use the upgrader like so, it seems to get instantiated and throws some logs, but doesn't present the popup. Any ideas as to how to work around this?
flutter: upgrader: instantiated
flutter: upgrader: initialize called
flutter: upgrader: build UpgradeAlert
flutter: upgrader: initializing
flutter: upgrader: operatingSystem: ios, version: Version 18.2 (Build 22C150)
flutter: upgrader: packageInfo packageName: io.custompod.app
flutter: upgrader: packageInfo appName: CustomPod.io
flutter: upgrader: packageInfo version: 2.0.0
flutter: upgrader: current locale: en_US
flutter: upgrader: countryCode: US
flutter: upgrader: languageCode: en
flutter: upgrader: download: https://itunes.apple.com/lookup?bundleId=io.custompod.app&country=US&lang=en&_cb=1736789092080513
flutter: upgrader: response statusCode: 200
flutter: upgrader: UpgraderAppStore: version info: appStoreListingURL: https://apps.apple.com/us/app/custompod/id6736601107?uo=4, appStoreVersion: 3.1.0, installedVersion: 2.0.0, isCriticalUpdate: null, minAppVersion: null, releaseNotes: - Ability to change voices
- Update to high quality voices and audio
- Ability to schedule generation of briefings at any time in the day
- Minor UI tweaks
flutter: upgrader: need to evaluate version
flutter: upgrader: blocked: false
flutter: upgrader: debugDisplayAlways: true
flutter: upgrader: debugDisplayOnce: false
flutter: upgrader: hasAlerted: false
flutter: upgrader: shouldDisplayUpgrade: true
flutter: upgrader: shouldDisplayReleaseNotes: true
flutter: upgrader: current locale: en_US
flutter: upgrader: languageCode: en
flutter: upgrader: showTheDialog title: Update App?
flutter: upgrader: showTheDialog message: A new version of CustomPod.io is available! Version 3.1.0 is now available-you have 2.0.0.
flutter: upgrader: showTheDialog releaseNotes: - Ability to change voices
- Update to high quality voices and audio
- Ability to schedule generation of briefings at any time in the day
- Minor UI tweaks
flutter: upgrader: onCanPop called
Similar issue for me, I'm using CupertinoApp.router and when running I get this error:
flutter: No MaterialLocalizations found.
StreamBuilder widgets require MaterialLocalizations to be provided by a Localizations widget ancestor.
The material library uses Localizations to generate messages, labels, and abbreviations.
To introduce a MaterialLocalizations, either use a MaterialApp at the root of your application to include them automatically, or add a Localization widget with a MaterialLocalizations delegate.
The specific widget that could not find a MaterialLocalizations ancestor was:
StreamBuilder
The ancestors of this widget were:
UpgradeAlert
Builder
DefaultTextStyle
ValueListenableBuilder
Title
Directionality
_LocalizationsScope-[GlobalKey#1e83a]
Semantics
Localizations
Semantics
_FocusInheritedScope
Focus
Shortcuts
_ShortcutRegistrarScope
ShortcutRegistrar
TapRegionSurface
_FocusInheritedScope
Focus
FocusTraversalGroup
_ActionsScope
Actions
Semantics
_FocusInheritedScope
Focus
Shortcuts
<…>
flutter:
#0 debugCheckHasMaterialLocalizations. (package:flutter/src/material/debug.dart:93:7) #1 debugCheckHasMaterialLocalizations (package:flutter/src/material/debug.dart:113:4) #2 showDialog (package:flutter/src/material/dialog.dart:1421:10) #3 UpgradeAlertState.showTheDialog (package:upgrader/src/upgrade_alert.dart:234:5) #4 UpgradeAlertState.checkVersion. (package:upgrader/src/upgrade_alert.dart:144:9) #5 new Future.delayed. (dart:async/future.dart:431:42) #6 Timer._createTimer. (dart:async-patch/timer_patch.dart:18:15) #7 _Timer._runTimers (dart:isolate-patch/timer_impl.dart:398:19) #8 _Timer._handleMessage (dart:isolate-patch/timer_impl.dart:429:5) #9 _RawReceivePort._handleMessage (dart:isolate-patch/isolate_patch.dart:184:12)
flutter: ----------------------------------------------------
I have a pretty simple app who's root is using
CupertinoApp
, and when I use the upgrader like so, it seems to get instantiated and throws some logs, but doesn't present the popup. Any ideas as to how to work around this?With CupertinoApp
Logs:
Using MaterialApp
Code:
Logs (a little more extensive):
Version
The text was updated successfully, but these errors were encountered: