feat(mobile): iOS background sync notifications (#1811)

* adds notification handling logic

* notification on background updates for iOS

* fixed regression where i accidentally removed load translations from the background sync

* fixed ios translations

---------

Co-authored-by: Marty Fuhry <marty@fuhry.farm>
Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
martyfuhry 2023-02-21 07:28:52 -05:00 committed by GitHub
parent 2d2cfb0349
commit e9c9b7a3e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 396 additions and 63 deletions

View file

@ -314,10 +314,9 @@ class BackgroundService {
return false;
}
// Notifications aren't enabled in iOS yet, and this line
// below crashes the iOS background service
if (Platform.isAndroid) {
await loadTranslations();
final translationsOk = await loadTranslations();
if (!translationsOk) {
debugPrint("[_callHandler] could not load translations");
}
final bool ok = await _onAssetsChanged();