From 3fa3c9076b5a5c975e1518938b17a8e3e08d6c79 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Tue, 26 Jan 2021 23:45:27 +0300 Subject: [PATCH 01/25] Update. --- lib/widgets/thread/thread_messages_list.dart | 35 ++++++++++++-------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/lib/widgets/thread/thread_messages_list.dart b/lib/widgets/thread/thread_messages_list.dart index e82c245e..379db8dc 100644 --- a/lib/widgets/thread/thread_messages_list.dart +++ b/lib/widgets/thread/thread_messages_list.dart @@ -76,25 +76,28 @@ class _ThreadMessagesListState } final ItemScrollController _itemScrollController = ItemScrollController(); - final ItemPositionsListener _itemPositionsListener = ItemPositionsListener.create(); + final ItemPositionsListener _itemPositionsListener = + ItemPositionsListener.create(); var _messages = []; var _lastIndex = 0; @override void initState() { super.initState(); - // WidgetsBinding.instance.addPostFrameCallback((_) { - // _itemScrollController?.jumpTo(index: _messages.length - 1); - // }); - // _itemPositionsListener.itemPositions.addListener(() { - // final lastPosition = _itemPositionsListener.itemPositions.value.last; - // final index = lastPosition.index; - // if (_lastIndex != index) { - // print(_lastIndex); - // _lastIndex = index; - // _itemScrollController?.jumpTo(index: _lastIndex); - // } - // }); + WidgetsBinding.instance.addPostFrameCallback((_) { + if (_itemScrollController.isAttached) { + _itemScrollController?.jumpTo(index: _messages.length); + } + }); + _itemPositionsListener.itemPositions.addListener(() { + final lastPosition = _itemPositionsListener.itemPositions.value.last; + final index = lastPosition.index; + if (_lastIndex != index) { + print(_lastIndex); + _lastIndex = index; + _itemScrollController?.jumpTo(index: _lastIndex); + } + }); } @override @@ -103,6 +106,12 @@ class _ThreadMessagesListState builder: (ctx, state) { if (state is MessagesLoaded) { _messages = state.messages.reversed.toList(); + if (_itemScrollController.isAttached) { + _itemScrollController?.jumpTo( + index: _messages.length, + alignment: 1.0, + ); + } } return Expanded( child: state is MessagesLoaded From 1c268a360f022158fd68369465f4d9a7070a686e Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 00:02:01 +0300 Subject: [PATCH 02/25] Urgently switched back to web_auth_page. --- lib/pages/initial_page.dart | 4 +- lib/pages/web_auth_page.dart | 132 +++++++++++++++++------------------ pubspec.yaml | 1 + 3 files changed, 70 insertions(+), 67 deletions(-) diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index 9ee89b3c..f35623ce 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -17,6 +17,7 @@ import 'package:twake/blocs/add_channel_bloc.dart'; import 'package:twake/config/dimensions_config.dart'; import 'package:twake/pages/auth_page.dart'; import 'package:twake/pages/routes.dart'; +import 'package:twake/pages/web_auth_page.dart'; // import 'package:twake/pages/web_auth_page.dart'; class InitialPage extends StatefulWidget { @@ -70,7 +71,8 @@ class _InitialPageState extends State with WidgetsBindingObserver { return buildSplashScreen(); } if (state is Unauthenticated) { - return AuthPage(); + // return AuthPage(); + return WebAuthPage(); } if (state is Authenticated) { return MultiBlocProvider( diff --git a/lib/pages/web_auth_page.dart b/lib/pages/web_auth_page.dart index 7067ac16..91c4b72e 100644 --- a/lib/pages/web_auth_page.dart +++ b/lib/pages/web_auth_page.dart @@ -1,66 +1,66 @@ -// import 'dart:io' show Platform; -// -// import 'package:flutter/material.dart'; -// import 'package:flutter_bloc/flutter_bloc.dart'; -// import 'package:twake/blocs/auth_bloc.dart'; -// // import 'package:twake/services/service_bundle.dart'; -// import 'package:webview_flutter/webview_flutter.dart'; -// -// class WebAuthPage extends StatefulWidget { -// WebAuthPage() { -// if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView(); -// CookieManager().clearCookies(); -// } -// -// @override -// _WebAuthPageState createState() => _WebAuthPageState(); -// } -// -// class _WebAuthPageState extends State { -// WebViewController webViewController; -// final twakeConsole = -// 'https://beta.twake.app/ajax/users/console/openid?mobile=1'; -// bool hasMessage = false; -// -// @override -// Widget build(BuildContext context) { -// return Scaffold( -// body: SafeArea( -// child: WebView( -// initialMediaPlaybackPolicy: AutoMediaPlaybackPolicy.always_allow, -// onWebViewCreated: (ctrl) => webViewController = ctrl, -// navigationDelegate: (r) async { -// // Logger().d('URL IS: ' + r.url); -// if (r.url.contains('redirect_to_app')) { -// final qp = Uri.parse(r.url).queryParameters; -// // Logger().d('PARAMS: $qp'); -// if (qp['token'] == null || qp['username'] == null) -// webViewController.loadUrl(twakeConsole); -// BlocProvider.of(context).add( -// SetAuthData(qp), -// ); -// await CookieManager().clearCookies(); -// } -// return NavigationDecision.navigate; -// }, -// javascriptMode: JavascriptMode.unrestricted, -// initialUrl: twakeConsole, -// // javascriptChannels: Set.from([ -// // JavascriptChannel( -// // name: 'AuthData', -// // onMessageReceived: (jsmsg) async { -// // await CookieManager().clearCookies(); -// // if (hasMessage) return; -// // hasMessage = true; -// // BlocProvider.of(context).add( -// // SetAuthData(jsonDecode(jsmsg.message)), -// // ); -// // Logger().d('GOT DATA FROM WEBVIEW: ' + jsmsg.message); -// // webViewController.clearCache(); -// // }), -// // ]), -// ), -// ), -// ); -// } -// } +import 'dart:io' show Platform; + +import 'package:flutter/material.dart'; +import 'package:flutter_bloc/flutter_bloc.dart'; +import 'package:twake/blocs/auth_bloc.dart'; +// import 'package:twake/services/service_bundle.dart'; +import 'package:webview_flutter/webview_flutter.dart'; + +class WebAuthPage extends StatefulWidget { + WebAuthPage() { + if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView(); + CookieManager().clearCookies(); + } + + @override + _WebAuthPageState createState() => _WebAuthPageState(); +} + +class _WebAuthPageState extends State { + WebViewController webViewController; + final twakeConsole = + 'https://beta.twake.app/ajax/users/console/openid?mobile=1'; + bool hasMessage = false; + + @override + Widget build(BuildContext context) { + return Scaffold( + body: SafeArea( + child: WebView( + initialMediaPlaybackPolicy: AutoMediaPlaybackPolicy.always_allow, + onWebViewCreated: (ctrl) => webViewController = ctrl, + navigationDelegate: (r) async { + // Logger().d('URL IS: ' + r.url); + if (r.url.contains('redirect_to_app')) { + final qp = Uri.parse(r.url).queryParameters; + // Logger().d('PARAMS: $qp'); + if (qp['token'] == null || qp['username'] == null) + webViewController.loadUrl(twakeConsole); + BlocProvider.of(context).add( + SetAuthData(qp), + ); + await CookieManager().clearCookies(); + } + return NavigationDecision.navigate; + }, + javascriptMode: JavascriptMode.unrestricted, + initialUrl: twakeConsole, + // javascriptChannels: Set.from([ + // JavascriptChannel( + // name: 'AuthData', + // onMessageReceived: (jsmsg) async { + // await CookieManager().clearCookies(); + // if (hasMessage) return; + // hasMessage = true; + // BlocProvider.of(context).add( + // SetAuthData(jsonDecode(jsmsg.message)), + // ); + // Logger().d('GOT DATA FROM WEBVIEW: ' + jsmsg.message); + // webViewController.clearCache(); + // }), + // ]), + ), + ), + ); + } +} diff --git a/pubspec.yaml b/pubspec.yaml index e365eb2b..81283e13 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -31,6 +31,7 @@ dependencies: sticky_grouped_list: ^1.3.0 scrollable_positioned_list: ^0.1.8 flutter_inappwebview: ^4.0.0+4 + webview_flutter: ^1.0.7 logger: ^0.9.4 clipboard: ^0.1.2+8 url_launcher: ^5.7.10 From 0d712de9a4bbc38485dc361f045361d763ad173f Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 00:44:04 +0300 Subject: [PATCH 03/25] Urgently switched back to AuthPage. --- lib/pages/initial_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index f35623ce..edd1531c 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -71,8 +71,8 @@ class _InitialPageState extends State with WidgetsBindingObserver { return buildSplashScreen(); } if (state is Unauthenticated) { - // return AuthPage(); - return WebAuthPage(); + return AuthPage(); + // return WebAuthPage(); } if (state is Authenticated) { return MultiBlocProvider( From b524f80969beb832d196cafe9c1e763c87a330d6 Mon Sep 17 00:00:00 2001 From: romka <8026787@gmail.com> Date: Wed, 27 Jan 2021 10:25:14 +0300 Subject: [PATCH 04/25] small boolean fix --- .../com/twake/twake_mobile/MainActivity.kt | 6 + .../res/drawable-v21/launch_background.xml | 12 + .../app/src/main/res/values-night/styles.xml | 18 + integration_test/app_test.dart | 36 + integration_test/driver.dart | 8 + ios/Podfile.lock | 179 ++++ ios/Runner.xcodeproj/project.pbxproj | 6 +- ...efc1ed4a69938bc13b60859820ac3-desc.xcbuild | Bin 0 -> 489303 bytes ...ed4a69938bc13b60859820ac3-manifest.xcbuild | 100 ++ ...acheIndex-90dce09fc29e5ee6f3471641440bac26 | Bin 0 -> 112 bytes ...4a798ef309caeb430bcd0870741c0-desc.xcbuild | Bin 0 -> 346605 bytes ...8ef309caeb430bcd0870741c0-manifest.xcbuild | 97 ++ ...d3030c43e1f71bc8c29ff34ef3e52-desc.xcbuild | Bin 0 -> 647244 bytes ...0c43e1f71bc8c29ff34ef3e52-manifest.xcbuild | 106 ++ ios/build/XCBuildData/build.db | Bin 0 -> 303104 bytes lib/widgets/channel/channel_tile.dart | 2 +- log.sh | 28 + pubspec.lock | 905 ++++++++++++++++++ web/favicon.png | Bin 0 -> 917 bytes web/icons/Icon-192.png | Bin 0 -> 5292 bytes web/icons/Icon-512.png | Bin 0 -> 8252 bytes web/index.html | 45 + web/manifest.json | 23 + 23 files changed, 1567 insertions(+), 4 deletions(-) create mode 100644 android/app/src/main/kotlin/com/twake/twake_mobile/MainActivity.kt create mode 100644 android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 android/app/src/main/res/values-night/styles.xml create mode 100644 integration_test/app_test.dart create mode 100644 integration_test/driver.dart create mode 100644 ios/Podfile.lock create mode 100644 ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-desc.xcbuild create mode 100644 ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-manifest.xcbuild create mode 100644 ios/build/XCBuildData/BuildDescriptionCacheIndex-90dce09fc29e5ee6f3471641440bac26 create mode 100644 ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-desc.xcbuild create mode 100644 ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-manifest.xcbuild create mode 100644 ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-desc.xcbuild create mode 100644 ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-manifest.xcbuild create mode 100644 ios/build/XCBuildData/build.db create mode 100755 log.sh create mode 100644 pubspec.lock create mode 100644 web/favicon.png create mode 100644 web/icons/Icon-192.png create mode 100644 web/icons/Icon-512.png create mode 100644 web/index.html create mode 100644 web/manifest.json diff --git a/android/app/src/main/kotlin/com/twake/twake_mobile/MainActivity.kt b/android/app/src/main/kotlin/com/twake/twake_mobile/MainActivity.kt new file mode 100644 index 00000000..4c144b55 --- /dev/null +++ b/android/app/src/main/kotlin/com/twake/twake_mobile/MainActivity.kt @@ -0,0 +1,6 @@ +package com.twake.twake_mobile + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 00000000..f74085f3 --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 00000000..449a9f93 --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/integration_test/app_test.dart b/integration_test/app_test.dart new file mode 100644 index 00000000..c86bdfda --- /dev/null +++ b/integration_test/app_test.dart @@ -0,0 +1,36 @@ +// This is a basic Flutter integration test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility that Flutter provides. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:integration_test/integration_test.dart'; + +import 'package:twake_mobile/main.dart' as app; + +void main() => run(_testMain); + +void _testMain() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + app.main(); + + // Trigger a frame. + await tester.pumpAndSettle(); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/integration_test/driver.dart b/integration_test/driver.dart new file mode 100644 index 00000000..a03bca08 --- /dev/null +++ b/integration_test/driver.dart @@ -0,0 +1,8 @@ +// This file is provided as a convenience for running integration tests via the +// flutter drive command. +// +// flutter drive --driver integration_test/driver.dart --target integration_test/app_test.dart + +import 'package:integration_test/integration_test_driver.dart'; + +Future main() => integrationDriver(); diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 00000000..6f6a8aad --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,179 @@ +PODS: + - connectivity (0.0.1): + - Flutter + - Reachability + - device_info (0.0.1): + - Flutter + - Firebase/CoreOnly (6.33.0): + - FirebaseCore (= 6.10.3) + - Firebase/Messaging (6.33.0): + - Firebase/CoreOnly + - FirebaseMessaging (~> 4.7.0) + - firebase_core (0.5.3): + - Firebase/CoreOnly (~> 6.33.0) + - Flutter + - firebase_messaging (7.0.3): + - Firebase/CoreOnly (~> 6.33.0) + - Firebase/Messaging (~> 6.33.0) + - firebase_core + - Flutter + - FirebaseCore (6.10.3): + - FirebaseCoreDiagnostics (~> 1.6) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Logger (~> 6.7) + - FirebaseCoreDiagnostics (1.7.0): + - GoogleDataTransport (~> 7.4) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Logger (~> 6.7) + - nanopb (~> 1.30906.0) + - FirebaseInstallations (1.7.0): + - FirebaseCore (~> 6.10) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/UserDefaults (~> 6.7) + - PromisesObjC (~> 1.2) + - FirebaseInstanceID (4.8.0): + - FirebaseCore (~> 6.10) + - FirebaseInstallations (~> 1.6) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/UserDefaults (~> 6.7) + - FirebaseMessaging (4.7.1): + - FirebaseCore (~> 6.10) + - FirebaseInstanceID (~> 4.7) + - GoogleUtilities/AppDelegateSwizzler (~> 6.7) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Reachability (~> 6.7) + - GoogleUtilities/UserDefaults (~> 6.7) + - Protobuf (>= 3.9.2, ~> 3.9) + - Flutter (1.0.0) + - flutter_inappwebview (0.0.1): + - Flutter + - FMDB (2.7.5): + - FMDB/standard (= 2.7.5) + - FMDB/standard (2.7.5) + - GoogleDataTransport (7.5.1): + - nanopb (~> 1.30906.0) + - GoogleUtilities/AppDelegateSwizzler (6.7.2): + - GoogleUtilities/Environment + - GoogleUtilities/Logger + - GoogleUtilities/Network + - GoogleUtilities/Environment (6.7.2): + - PromisesObjC (~> 1.2) + - GoogleUtilities/Logger (6.7.2): + - GoogleUtilities/Environment + - GoogleUtilities/Network (6.7.2): + - GoogleUtilities/Logger + - "GoogleUtilities/NSData+zlib" + - GoogleUtilities/Reachability + - "GoogleUtilities/NSData+zlib (6.7.2)" + - GoogleUtilities/Reachability (6.7.2): + - GoogleUtilities/Logger + - GoogleUtilities/UserDefaults (6.7.2): + - GoogleUtilities/Logger + - image_picker (0.0.1): + - Flutter + - nanopb (1.30906.0): + - nanopb/decode (= 1.30906.0) + - nanopb/encode (= 1.30906.0) + - nanopb/decode (1.30906.0) + - nanopb/encode (1.30906.0) + - package_info (0.0.1): + - Flutter + - path_provider (0.0.1): + - Flutter + - PromisesObjC (1.2.11) + - Protobuf (3.14.0) + - Reachability (3.2) + - sqflite (0.0.2): + - Flutter + - FMDB (>= 2.7.5) + - url_launcher (0.0.1): + - Flutter + - webview_flutter (0.0.1): + - Flutter + +DEPENDENCIES: + - connectivity (from `.symlinks/plugins/connectivity/ios`) + - device_info (from `.symlinks/plugins/device_info/ios`) + - firebase_core (from `.symlinks/plugins/firebase_core/ios`) + - firebase_messaging (from `.symlinks/plugins/firebase_messaging/ios`) + - Flutter (from `Flutter`) + - flutter_inappwebview (from `.symlinks/plugins/flutter_inappwebview/ios`) + - image_picker (from `.symlinks/plugins/image_picker/ios`) + - package_info (from `.symlinks/plugins/package_info/ios`) + - path_provider (from `.symlinks/plugins/path_provider/ios`) + - sqflite (from `.symlinks/plugins/sqflite/ios`) + - url_launcher (from `.symlinks/plugins/url_launcher/ios`) + - webview_flutter (from `.symlinks/plugins/webview_flutter/ios`) + +SPEC REPOS: + trunk: + - Firebase + - FirebaseCore + - FirebaseCoreDiagnostics + - FirebaseInstallations + - FirebaseInstanceID + - FirebaseMessaging + - FMDB + - GoogleDataTransport + - GoogleUtilities + - nanopb + - PromisesObjC + - Protobuf + - Reachability + +EXTERNAL SOURCES: + connectivity: + :path: ".symlinks/plugins/connectivity/ios" + device_info: + :path: ".symlinks/plugins/device_info/ios" + firebase_core: + :path: ".symlinks/plugins/firebase_core/ios" + firebase_messaging: + :path: ".symlinks/plugins/firebase_messaging/ios" + Flutter: + :path: Flutter + flutter_inappwebview: + :path: ".symlinks/plugins/flutter_inappwebview/ios" + image_picker: + :path: ".symlinks/plugins/image_picker/ios" + package_info: + :path: ".symlinks/plugins/package_info/ios" + path_provider: + :path: ".symlinks/plugins/path_provider/ios" + sqflite: + :path: ".symlinks/plugins/sqflite/ios" + url_launcher: + :path: ".symlinks/plugins/url_launcher/ios" + webview_flutter: + :path: ".symlinks/plugins/webview_flutter/ios" + +SPEC CHECKSUMS: + connectivity: c4130b2985d4ef6fd26f9702e886bd5260681467 + device_info: d7d233b645a32c40dfdc212de5cf646ca482f175 + Firebase: 8db6f2d1b2c5e2984efba4949a145875a8f65fe5 + firebase_core: 5d6a02f3d85acd5f8321c2d6d62877626a670659 + firebase_messaging: 0aea2cd5885b65e19ede58ee3507f485c992cc75 + FirebaseCore: d889d9e12535b7f36ac8bfbf1713a0836a3012cd + FirebaseCoreDiagnostics: 770ac5958e1372ce67959ae4b4f31d8e127c3ac1 + FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 + FirebaseInstanceID: bd3ffc24367f901a43c063b36c640b345a4a5dd1 + FirebaseMessaging: 5eca4ef173de76253352511aafef774caa1cba2a + Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c + flutter_inappwebview: 69dfbac46157b336ffbec19ca6dfd4638c7bf189 + FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a + GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 + GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3 + image_picker: 9c3312491f862b28d21ecd8fdf0ee14e601b3f09 + nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc + package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62 + path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c + PromisesObjC: 8c196f5a328c2cba3e74624585467a557dcb482f + Protobuf: 0cde852566359049847168e51bd1c690e0f70056 + Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96 + sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904 + url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef + webview_flutter: d2b4d6c66968ad042ad94cbb791f5b72b4678a96 + +PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c + +COCOAPODS: 1.10.0 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index e243ce17..5f937f88 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -361,7 +361,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = 6Z27TKCGWF; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -504,7 +504,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = 6Z27TKCGWF; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -537,7 +537,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = 6Z27TKCGWF; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( diff --git a/ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-desc.xcbuild b/ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..45c956b572bdb0ef569eea64999ebfd72d533a09 GIT binary patch literal 489303 zcmeFa*>@w^c_)Z0%aUx#i)4A3>7H)5RI;j+1%O*JlNzIsumng{0tg5JFiEvN(Lo?c zq7nos0Ayy?nMLPJ&-m4<^4N1`rh7_ml}eJWeU~gbj|4yWLqG8x{W0_V?iM!!fsFt& zHSN$j$^zrw``!KC?|$3wKVIEUH3n{fkm~o&9y+N`yX&0v`cA6;$a(0Ndq?e#n`-w4 zsiTW_r;=F=JCDl&DQ3< z<9p85y?f5xdz;R^dv{v*j@FJgkKCgTcjtI#?WpB$9&ha=5?QC;Z-Y|q)ajnMna6D(j$&U({o?7NsE-Bcs2VZVKDJvlq-b*68S8(W$CPN&_%PMzBSi&ghOhZSi(Y99})PV=F2 z;?~?j@1oyy2X$xgkk5$QpW39?SKXvt7bhVGqE)~_JAXUeRkvf$by_$zo%6YeV&zRJ zc8`124)*NxYeE^Dvg4K)7=_QSdLqQZQ0)zd=lvem=Ahj@nR`S!H`E-Q7&xsi`tIB< zS^4s?oNjyAe#7n0-Gt*+4~8|oILd-S>OYyg4a1eUfzGc&-#K$1_4*Gp*<$Y0Z9ZIJ zR94P}u@luAI^CAjZ( ze=mQmZzVU>*LR%$+4k03@3Q|~-s6ALznAxZ&j0wEt2N& z_i?J)cbmPlbFdXHez^~>S~pl7JqfL0ukZfiFRot7Se8-GW$Kxdxoa1SrMgkG3uevE z8~eqaVVBLkQTj@|N@KqB>ekgOGxD33y>Ha4qFMPO&C5@+jbbTpXL9x8zG2r4%WTwg zhGmDc%XZ!BPcl;y*eF#(#Xz}Mh_qnG}NAaEQ zBlpgR+q}2aT5H|Cv$eCf?%ZiPTRZFPN1NMg+v1sQuX^tv;VINj@YMir!pGtMBJd_& z`Ic{j=}w$7_Hw}5&~Ya|zton$rM9aW6WlMWeWkkHR_HiPZbD=AO&Io{gf>D7OjiCj zKatN3IU~O6rF>-a7#yy84BBUBZmS)93Ccw|xgmeP>V}*#)_;)bW2H`?l$A3q=cmrV zT}vdI=lDNybBXg_Ymhht!+Q)~Cei6NABN7;jV%+_qV+`oqMH~rAuE_Jr&u|^#H!yA z2bP-sy7C!emgNd z#T9bI9zRp-U-^TW)qj`o4)^THZSmc4ET2Fj!|~?ZS8?2SN$32$<0b_c)E^|B!N46h zF+rW)$(#RKa+g`TQCGye>$6t*RvFB!65m#$vQB2`unYjPAvtpTasxIn80O*BSjzBGJ1To?i?T$34iGhNIs*y}-%F&RORO zyK3k@9*%w^k?4Ydg}7t%n~B6Dr{4viG8p|)BH=zh@AZcXHGoeNZODm6&v?#8|3Y=+ z-02V7PKPxkfk7DzN0+k)c-aM{E^eE;pXBvos4xkMcC*(Vy$>@~q#qb?TJbon28nYT z#D9rF?6RTmbuo?@{FZl=jeZRb^XR`xByh4oSWc6KJeQb>1a3sPGx`n1rjPzrSgzh6 zamk;SqxTSVKKe+42+*tN3@ZaQonXz3UT|5<#Noti7`>P89BQ&Z;XUnhr$u9a*6y~? zF3xEBJH022AkR7awVmV|t(EhRGo+O@dcWL;w3x)6AFXBwjh5O$P(WRMZ1xJl7W~Ec z#VHVHdoM1Is=?Er|AOnTaIoD**TxREPUrG0+3Y|GmRz^j)QP9gxLa5M+w2BhV~Lta zue;6R0DBi(yOUz?#@ZJaY>@N(5lCc_15Um7PztMa_q&;CI%l@pqiDGyw%ty8@-Tt zJo6H3#;`j`wF%(XTj@vyMo~GAEA4?qL*>lo`n7`c| zBnGFwM|1u@v-S`aeiK<*>67lo&JKPb zqczQh({JMRI~H#l{5+9A57pO1)4?MnaqgfUzKNSdW|b18{FG%w(^N72r?&h^X~pxA&-vsc=rtoBju5csR25S2x8&2%2brpW{#^_(7&a{<`hSG8G4RRlf+5p#@gX_x^c-JdHl1A@ zR~R33sC&`z5yA>#3qYo81hFV_9`^CDNNjHGendE&mf6sX0_%#lk>~@uGLJ?E08)Rpeh{C3!2F7Mn{PCx7(d zFwN(UY-2aQj;iuGGiPS1X5PY|TFRd!^1Icn-LOddY}UV~tlhVZ<*He$ z2a0?+kw*#0q9M}W+{hN|p!i4ZTg9}incRINZ(H?RBgYDUgrx`pcR5oknK|T-C-P?Y zwVZ8&M!slOGxgjaZ$SO9YFM}}ek0KyJQ>h#8yzojHC6?8JxK9qfNA0B!5MDt$!F#7 zdl~2vkQ}rgVow~?IfmiK+2oKK8~4-$b|N+LFvJ4TMw`!u80r@iCwNA%>BL;?YYkuV z{-J$C;+W;B54`!xO380C!7mXNpxIZJq`rXBJEtnX~xzK4!K?j zNBxnD=Y%>**k=6@j#%7uIF>1eZqCs&QKg_`?ay9-D;S;oZt7KuD1Iu&+|>dr19ntfc-T-Hsg`Ww>q!s&?Pkkh+Jf zs~hZQG4HRKeF~|yzmi(Z>g}$e z-o~&Et^%B@s8jtNQs2o^^;Kas-3A+J9=)DR6|yDycSuG5ZrO^4y`zg`X!XI+<3~sh z$4k|~MRH8Kn9_cS)bsjM^&E?%#%|JCdPI~=iGFaPn7;gNKMPl6!AGWuB=O#aQ9Qbze4I-u2&cRj@@za?m9(P`X3=R zEq6pba*rMq`v=tp4C7Ct}3*)@|sLlFOKkj9?f;TPbjPo>QP~# zCKSXLgLbCxn%&Nml*P@QA*w0L-}-T-xQGRBnz?mh!t6;j!zV5tJ)Ea+*N{#7>*TWO zk^4+48~tgbun6<)=jlepWlF0>Lz6$MuZ)z&l#OaDq3UC{M&{~hGCpclSqVYKBaNy{ z(F@^zMx_-{RJ_fSt44Az#L0||r5Yw#l+oT&WHcsZ^x9IC)SXW($C3+8(NZkMD7RGO zIGeEK?CE^Kl7r>D=a+1jevvP^+5^`#gza;juyn5$_&q;*PoiATL!e%+k3I;wld{I3 zPleI1hI$mjdq^W8KPFjzLeme8epS?_(0nyVE7SLZTJKk5=zC8`A1P%jyJ@!z;cc>E zB{Ej7Se#pNe|1|ZW#d!SoAH;Ka`2U>KNqg3*H`C1T7gh-&J;|9+dG|#s>F^La z*AP&0W(md-kxH5#>V6@pPmJmNBSb9Ocy6Bnl@0ghDCiz%)G+dNW9PmFCharNoK>qsRn^x5hrj#Sd#!kJsX8jzMT zX>g>H4vRSH4Q}8hleP_{-Hue!^C-b44rQd0o)GSI;)rPs$&y-DrACfa(kjaA#9{yE zsgiz9nxfWZCG_)C{V}!kv)5oT{q%F1hh;U=Ka~n;pH41J1-%B}8R1d>m>d9^FY+MS zJ|geeB>B8NIqD&_pK>clJZGtR)#5aLOH@cfz<7ZxbGFWrBtN``sVp22k{#$kUQd;n zDX7)#yKYx&0X%y@a;;btyf1L}OE5)N!yChQD;fZX#>I=k?jYx#f+^F{N384K1F zLeDYx3K+7$Rf|@|$iCqL8?Ac9Jsp_`IYg_Yz;Q;&tRjwG!>Yk8ufCUFz>Q9Nk0+D! zTa>_hmqqW3dmAcFzR~dsn?ny0adTUGclHd1Z|O3{Ht-IUU$w3Lcy_;*+sf4cXbYcA z2$tlXd81XWu;;jSKR#*e1~!4dWnaRH8FCB5IsJI3ZeA78<%Q2*Jwv_(p@s5rqCLR{ zlWhIfm-tQg*OCW_eg5j-%-%iPsi2c%{rlWf5m(x?E5F9p4YP%tGiZw(m|G!i(qG9y zUp#6u_sj5EN?pyh624_UC>H9uPsZ0b*4C11$*uKY#{PEn=L_6Pi$pzPv(!Wg1Gt;^ zxl?=xe{o(Z(M1ph#W1}$VIuwoMV1gjr;aEV17&p)3B(2Kf`I#o>V+sLgZ5>6_$19j z9=fg3|MID4Hjy$?8=HgzF4Yo+@p?~!+}59!d;HXpG2{XNVL85Dz?MNs*z%i+ zgX2Dn+}6UJXcos55*Z|?`pPMWEZztFyRKdn>-NEauI9ei9 z6UrBsE-W|ns^wKt<^DQEva|w{p2rSR ztSmt>Oh8IBUt5}{QU|kXUuF&Y{C22uxg{E>Ja>rD9R3v(SGF!FC0cWM3{0fu7nKsV zWfq>I=K1ds$;=X?COmkE%rZ0S^Wj-`(EK9PWt*m}LfML4W(Nd4d8l!T*~3r#qx9wZ z5Mr?O5gN)FAiNOaO*}!Xn(*X#{T>1X$#A2%))DXLeDuH0Chjf1xurB={Gnhg5+)0H zN_<7xIZwVmK-@0TWFCf-B_p7fcJq3nFo<(Pgf|L#={YHVkbe`xsSoLY@pv@<N%o1)ega4| zJQhBOH)Ae0dvBKqcqbV|htpavl7X(ER@M@vtq!p)qXv*=NVRqw_v$gA9CCm zwPfUVFBteBuzqCSiuF_zuf9y2{pS^Ehxhwg+cxrApIOiyUfs=y-r@B;s{lN_w&jAm zC_b1B5WJ{3^w-3ty4(g;H7d^At5$uQSoh6_FCRz zjX}OxTfn>^hWNWR)2uI0B(+3f-}y}#UQ~Ke(qhIrdJ;2Y7$`#|3CoUH7$5UgpzNsz zU^)G=*Mm->J7W-tRaCWlQzEC1x!|66ZkmeMD32s2boJUcdM_PJ=TGQ>f*|&&H*g`-209?1yxhl##6D!82g@k%v~!pLM4WwI z!EvwC0?5KLYD|r|I?)LX!dJmEiY2WA!aaf*DoA~q=F>C77FDR{=WfOley-!-pKg7W3{tJ)ZpCKs51G2L2;(=$B&)%o@h7wm8#;g<;k?BD zt7B0U?1o_@A1AyN!my8Xr6K}|$ALJ~i+fvJ-3Y(&`GpvjKk;rH+M3{Lfw==~ZO-PZ zr$Q)e`{s9ZEOVA{iSp8v`s(%q49nYZj{cQA*TZWbEkbUA3;d}XvEQ9z#Jsn_kGuiH zF9I<~^ttn+$IbJnpO@x!FNB!az4cDMJskF~E*2P_VB`rg-RuJ7`b~GW$l zwC8+OuAZxb)Z}INT$?p|cH_Um;`_(3#mA@c2G-vS#KdFkFFNJ~4zzwW;rKu}-_;*; zYOohrU(f1rTgcgU&cluOH#*WnmKYzD#axW9G3pB}v}bsb^%vP&Vq-Gl!-U7LOzQ)F zyJc}NHEG>!F_*;CtLLT|o_w1=w}gSxXX%&4(m+ z>9mv-CwBGkZ)BxS;gfA;2>*neQvt;Lt*ezP8s2Hj0xYKpx792jRTRA_2#AAo^@(-I1JuWI;pGIT0dk==n}%S*d_){{W>C-oK} zPQqg{Rkd4B5Df#kuU_MR2UgPHVOtm648w)h#xc6mOgPZW{hs(ulbGmVbcbz((l`N& zuzKqTwGdM6^HW6V=ndd2TVl#Wm83QMw-QdPWjli*8*nY*`ARH*J%Oh}4pvB=!Dj*T z?QX*BxAO*#skGA^{T6xK)e*0Ty7|PH^Z^Z{+n4Y`$w*LHU&7EIj0ap8g@3u3W}^&G^ki?*hgN1Xu6-{(E6T3Us=^6TI8?#P{Q>W^m#@n(wz@ z&(%k07T?$3vz`ow?pdzaJ#L>|^v9d>>y6_5_Rv@619~6;z2e_G)?vVXWj?Hulvj{1 z{k_89UMKfK-QUKS`?q{aFc?7Hb*z(<*(Ho2-DVlexc;P$@YY{UbT>M-}CkZH!3@O2urfiW&h?o<%cjG zTa}^kTch7h!8swtD#V#_zM?g?z+v$dZWI?+wsV@5-c!$x>>6XVBH5kCKfgUbTr00* zsgd)Vs*T(~daDb+&R`h{3;9zQU{!-A%yWmK>+G%XR!3HB+N@?HQT8Q7dPvJV&)!GVEf7wYsE* z%~dXKZm~Ob`(394S>C1F>7Bd%SSC!%Rqij^_85&7DjCQYiaprc1j5!OI z=KVbkD_7$2gn}jNrdhJMnYC(@*Zve4RS#I1VvaY-IH(&HiyD`y7HzXqI%H#uejeJj zM#-=+Mws;Kp};`4nJ({A zrtPheOe#k(%_}`#u2{*H8hKi=dM;l>8kOR{QL{27yI9>bD~4^dK6ov$ETfJw%aqJr zj7PbO(Wqg}s>K|}u97JmX*`9C&0aT_(X(RIu*B?wS)(;p%o#TAgi^X)rMKRxG-=2gO4d7w%(vZZ299KikpGG{K6+rvs? z&cT;XKgB(%2C2<^sgo0!(;r>lSvy~EZuZ}J`0!|}+r4+^Yz_ZA>85fij{#5zH9O~0 z>l?|9#QH{d>&{W?fP6$^x!m5(*RhA4l4f^!^AyG&vD_Z+w=@%A4Tu}XetXo7!Rc49E8kG&ce+WEq;)xRqSlZ%-y$hnQFaJGwe*GZq|&Fk+E=eYc1tjansQbl82)= za4Z>TPdO7TgX}br^(p1@Mzv<(oCov4#;8~ZpP+7VeI!{mIKzxwU1YT~U_&rlRIP2) zYGzIEn^CUT5ACd(KMXd@s5Ht`npCV5ij^Wb7*y5ZH$kAYU}L6~$I=4lgj)!g8?CV^ zSyh*dxndpl)ib#LEu&NjHkoCVL?_Pz%SJoS#+tU+=#3A|ryC{>H@~EbC$kIkxDsau zaUFb9utBe3R~UB5G^>37SjDk444GULy(QH__koVb?=~Xl; zH3LTy+eCB`2K#U48&#ZXbPkq{`ktA$aq8ywWHt+@95&9v_k<8jv0E~5X-Fdrp7xq^ z>Et@jVBikWY$H=aR}H#v0)Qq6n$f|u4XZ?bVSYTlWNY-)At#aKH`7tg@ z%sNR~kzPHdWlbYs)b?@o?iIkHfmLV620dNGM!_^CW+|v6T3o<3hM=X`{b&EufnY3 ze8%R%-Du(}BF~_R`QxxyS9U3vFS)c^Z>xxFguc zmyE=gN)e9$`38UpqK-!#E@N!-cLBNdZUo?joh__?(`@R0)W1D$= zfh#f!}R7k4m{h3Amg=pmH{R^Iy_8NGtl6gqX6)tlzIR4K#BI}qRye%0E z=ufO?YP$xzH!xU6WuLDb{(Q%)S)h<}`7D}02UieHtmu2|=#96yLy&R66Lh&Gt zj6z$j7fpwh#l!h}jYUDPrLZxxF)1`3c6b{huc*^9V!LUfQL(T94U2fP{Y1)gBoF#$o&MRNfADRczOB=@b^5l>zik2dgAz6<0q-&T2bnjLNZ6!= zO-k6LgiT7=)?g7yCz8bFEQP?>aWc&6;_TZ3UNU$F>NMxj8wA0*L= z^=7S95NZp5N`?gUkn&j6NFAh%~Dx#+OelQBjKJMxh>elCC_?Cu%tZi_b%IX zTZGJq%dbQ!`plSBy$7t7-Wy%%33>ap1jGkIX~xi|>8QHL}?JSOI1Y3oTP8jh>ZG<}tZYfVlDG;IbP}p0tPYki%gOSu|laq3xyPTl4%idpIJf} zRn${ru|5aBvmpnEoLmbgG@#k8rTt0#XxFP2?@LvfKUn6Nkq+#r&j`a55u%1Mjfa_V zS!q0q%FN#x@@1nIyhlynFN+DT{AYJO{^BB1FMnYbznW}eUtAd_&31M*M18ilDdYibyG&=H=*d z8|dX|oNE{b%TgMi+Kh>VC&+T7bertuC1aN;Ao6dOaS`nK?64HS-q!P#<@zSu!1?!K$0t zM!^&EL!VPMYp7kzjm(gH;AOM9L3T*%aeSaL!2M(S%S;9@Z#Y5Q^vSczvZOQA@J3*+nNvuC2hz;I!oN%=~h5o%wR39=*u zDqW}p!AsCIn>E#ERu%L#Po=H8|l17EVIVw`s&oa-&FNJmRMEp`+B2QGuGK(FZ*;;l`8&P)v3O$y2=n9TtxdP z%dC3efx;3Fpf^*k;?zZz>hD!or}OeD%~|pW>S3HdMb>3MR$YPi2uNwaS6z+oiQwUx z(SzZ}s!~q~uRir@)s^yhMvDJu)x`A&$PC1^~@}{L>Mv%q+~!c?SPW}!izCjjTyv8 za~lxN)??3vpkIFk#>mHDpIZ=<0dX5%2A46<^u;)Uk|nPUcbVFsb4y+xrexwW+LQ

j8=4LQD8!f-# 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%0ALI44x`7 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 CYE_8< literal 0 HcmV?d00001 diff --git a/ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-manifest.xcbuild b/ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-manifest.xcbuild new file mode 100644 index 00000000..e1bd0d73 --- /dev/null +++ b/ios/build/XCBuildData/0f5efc1ed4a69938bc13b60859820ac3-manifest.xcbuild @@ -0,0 +1,100 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/romka/linagora/TwakeMobile/build/ios": {"is-mutated":true} + "/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app": {"is-mutated":true} + "": {"is-command-timestamp":true} + +commands: + "": {"tool":"phony","inputs":["/Users/romka/linagora/TwakeMobile/build/ios","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/GoogleService-Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Runner","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/romka/linagora/TwakeMobile/build/ios","/Users/romka/linagora/TwakeMobile/build/ios"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--XCFrameworkTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/GoogleService-Info.plist","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc","","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Info.plist","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/GoogleService-Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app /Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app /Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPhone9,4","--filter-for-device-os-version","14.2","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphoneos","--compile","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"408b10156f5e08c12c944226aaa338cc"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o /Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DDEBUG=1","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-DDEBUG=1","-DPB_FIELD_32BIT=1","-DPB_NO_PACKED_STRUCTS=1","-DPB_ENABLE_MALLOC=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-I/Sources/FBLPromises/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia","-c","/Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"e675d9103de0d50af4fb6c49d7cebbf2"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DDEBUG=1","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-DDEBUG=1","-DPB_FIELD_32BIT=1","-DPB_NO_PACKED_STRUCTS=1","-DPB_ENABLE_MALLOC=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-I/Sources/FBLPromises/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d","--serialize-diagnostics","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.dia","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.d"],"deps-style":"makefile","signature":"2411a2d36c2a0c90fad9356a103d7de8"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"ae3d8923679616d4faf3695661a45647"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"39ce5d184d4ca636b06e2850f88a7ec2"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/AppDelegate.swift","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-incremental","-module-name","Runner","-Onone","-enable-batch-mode","-enforce-exclusivity=checked","@/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","-target","arm64-apple-ios9.0","-g","-module-cache-path","/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-swift-version","5","-I","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter","-F","/Users/romka/linagora/TwakeMobile/ios/Flutter","-parse-as-library","-c","-j8","-output-file-map","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-Xcc","-I/Sources/FBLPromises/include","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-Xcc","-DCOCOAPODS=1","-Xcc","-DDEBUG=1","-Xcc","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-Xcc","-DDEBUG=1","-Xcc","-DPB_FIELD_32BIT=1","-Xcc","-DPB_NO_PACKED_STRUCTS=1","-Xcc","-DPB_ENABLE_MALLOC=1","-emit-objc-header","-emit-objc-header-path","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","-import-objc-header","/Users/romka/linagora/TwakeMobile/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/romka/linagora/TwakeMobile/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d"],"deps-style":"makefile","signature":"b5978f3f7582d60a1aac7cb3fa092b38"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist /Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/GoogleService-Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/GoogleService-Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/GoogleService-Info.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CreateBuildDirectory /Users/romka/linagora/TwakeMobile/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/romka/linagora/TwakeMobile/build/ios","inputs":[],"outputs":["","/Users/romka/linagora/TwakeMobile/build/ios"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"7147c40a29d3e8a8dfc5d46c47c15629"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/Project/arm64.swiftsourceinfo"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"6b362ef6601d82f08ab9f96395517a8b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftdoc"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"ff418c186590fdb92350be7bdd6ecd4f"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64-apple-ios.swiftmodule"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"95e9a4272c9650fe532ed8ee9363be6b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftdoc"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"8b5c0c6b0338fc20e77ca2ebf4a460f0"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.swiftmodule/arm64.swiftmodule"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"fb53817b2857355e5ff5ad5dca8f61c9"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"c2a74d99e17cc2c3244423e8d1bc81f4"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Runner normal","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Runner",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","-L/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","-L/Users/romka/linagora/TwakeMobile/ios/Flutter","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-filelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule","-ObjC","-lsqlite3","-lz","-framework","CoreTelephony","-framework","FBLPromises","-framework","FirebaseCore","-framework","FirebaseCoreDiagnostics","-framework","FirebaseInstallations","-framework","FirebaseInstanceID","-framework","FirebaseMessaging","-framework","Foundation","-framework","GoogleDataTransport","-framework","GoogleUtilities","-framework","Protobuf","-framework","Security","-framework","SystemConfiguration","-framework","UIKit","-framework","device_info","-framework","firebase_core","-framework","firebase_messaging","-framework","nanopb","-framework","package_info","-framework","path_provider","-framework","url_launcher","-framework","webview_flutter","-weak_framework","UserNotifications","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat","-o","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Runner"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"3c6dff79f5970ae8c9b9f07766bb04f9"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--link","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"28637696001f5d95614822c6487b4503"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app": {"tool":"mkdir","description":"MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","",""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks",""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone9,4","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR_iphoneos14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_NAME":"iphoneos14.2","SDK_NAMES":"iphoneos14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"70b33e392676a8af80357e9a3d9f329343dca672","TARGET_DEVICE_MODEL":"iPhone9,4","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"dc7ec19f27bdc3ff2ac4a0820b7db59b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone9,4","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR_iphoneos14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_NAME":"iphoneos14.2","SDK_NAMES":"iphoneos14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"70b33e392676a8af80357e9a3d9f329343dca672","TARGET_DEVICE_MODEL":"iPhone9,4","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"60bf346ca8d8c1b20af61e05558bf63f"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","inputs":["/Users/romka/linagora/TwakeMobile/ios/Podfile.lock/","/Users/romka/linagora/TwakeMobile/ios/Pods/Manifest.lock/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone9,4","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/romka/linagora/TwakeMobile/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/romka/linagora/TwakeMobile/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR_iphoneos14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_NAME":"iphoneos14.2","SDK_NAMES":"iphoneos14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"70b33e392676a8af80357e9a3d9f329343dca672","TARGET_DEVICE_MODEL":"iPhone9,4","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"fd71feb42bae4310d751dce2cbc579d2"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","inputs":["/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist/","/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist","/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Frameworks/webview_flutter.framework"],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"NO","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"arm64","ARCHS_STANDARD":"arm64 armv7","ARCHS_STANDARD_32_64_BIT":"armv7 arm64","ARCHS_STANDARD_32_BIT":"armv7","ARCHS_STANDARD_64_BIT":"arm64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 armv7","ARCHS_UNIVERSAL_IPHONE_OS":"armv7 arm64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPhone9,4","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneOSCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_SIMULATOR_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","CORRESPONDING_SIMULATOR_PLATFORM_NAME":"iphonesimulator","CORRESPONDING_SIMULATOR_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","CORRESPONDING_SIMULATOR_SDK_NAME":"iphonesimulator14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"miphoneos-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-miphoneos-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources","DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER":"NO","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","EFFECTIVE_PLATFORM_NAME":"-iphoneos","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBEDDED_PROFILE_NAME":"embedded.mobileprovision","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_ALLOWED":"YES","ENTITLEMENTS_DESTINATION":"Signature","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_THUMB_SUPPORT":"YES","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphoneos","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KASAN_DEFAULT_CFLAGS":"-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"armv7","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","PLATFORM_DISPLAY_NAME":"iOS","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphoneos","PLATFORM_PREFERRED_ARCH":"arm64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PROVISIONING_PROFILE_REQUIRED":"YES","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","RESOURCE_RULES_REQUIRED":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_DIR_iphoneos14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","SDK_NAME":"iphoneos14.2","SDK_NAMES":"iphoneos14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"YES","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_MACCATALYST":"NO","SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD":"YES","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_arm64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos","TARGET_DEVICE_IDENTIFIER":"70b33e392676a8af80357e9a3d9f329343dca672","TARGET_DEVICE_MODEL":"iPhone9,4","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e armv7 armv7s","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"64b11c8da59b95f48bb60cbe86d178aa"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app/Info.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","",""],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app": {"tool":"shell","description":"Touch /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"8c069587ea24e653740a7077bb32c37d"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Validate /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app": {"tool":"validate-product","description":"Validate /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphoneos/Runner.app","inputs":["","",""],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Runner.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/BuildDescriptionCacheIndex-90dce09fc29e5ee6f3471641440bac26 b/ios/build/XCBuildData/BuildDescriptionCacheIndex-90dce09fc29e5ee6f3471641440bac26 new file mode 100644 index 0000000000000000000000000000000000000000..5879a4c2c16f02143a993759a2bd6b2fa5c8a2f4 GIT binary patch literal 112 zcmWN{!4bnS2mry9;ztSqfeciW0R#=%CAkAP6y0xU?)~h3*ZsYo!vz-sK{6G#V5H`- sZsKaHIrhQLE~eXH=@m>6xj+SkG2uC&XLVvN_S1|s5-Cp5X*$4@{z`lxQ2+n{ literal 0 HcmV?d00001 diff --git a/ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-desc.xcbuild b/ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..0a9ebbb1f2b2ee73219c17e74b985cc64d3aab30 GIT binary patch literal 346605 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

;A%jR6i46QQfF- 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 BePRFr literal 0 HcmV?d00001 diff --git a/ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-manifest.xcbuild b/ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-manifest.xcbuild new file mode 100644 index 00000000..4291fed3 --- /dev/null +++ b/ios/build/XCBuildData/a4f4a798ef309caeb430bcd0870741c0-manifest.xcbuild @@ -0,0 +1,97 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/romka/linagora/TwakeMobile/build/ios": {"is-mutated":true} + +commands: + "": {"tool":"phony","inputs":["/Users/romka/linagora/TwakeMobile/build/ios","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/romka/linagora/TwakeMobile/build/ios","/Users/romka/linagora/TwakeMobile/build/ios"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--XCFrameworkTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app /Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app /Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPod9,1","--filter-for-device-os-version","14.2","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphonesimulator","--compile","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"d3126b692c1a3fb5335244d1212a35d7"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios9.0-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DDEBUG=1","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-DDEBUG=1","-DPB_FIELD_32BIT=1","-DPB_NO_PACKED_STRUCTS=1","-DPB_ENABLE_MALLOC=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-fobjc-abi-version=2","-fobjc-legacy-dispatch","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-I/Sources/FBLPromises/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia","-c","/Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"c99b3854f2f25fda41eec33c4ca387e1"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","x86_64-apple-ios9.0-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DDEBUG=1","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-DDEBUG=1","-DPB_FIELD_32BIT=1","-DPB_NO_PACKED_STRUCTS=1","-DPB_ENABLE_MALLOC=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-I/Sources/FBLPromises/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.d","--serialize-diagnostics","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.dia","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.d"],"deps-style":"makefile","signature":"cad7102a2fe9cbc86be2aefdc65e3495"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"bd5cd1c8acc968c18c420a630370867b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"1e1fcade0e45660865ac2be0f56a0d3b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/AppDelegate.swift","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-incremental","-module-name","Runner","-Onone","-enable-batch-mode","-enforce-exclusivity=checked","@/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-target","x86_64-apple-ios9.0-simulator","-g","-module-cache-path","/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-swift-version","5","-I","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F","/Users/romka/linagora/TwakeMobile/ios/Flutter","-parse-as-library","-c","-j8","-output-file-map","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-Xcc","-I/Sources/FBLPromises/include","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-Xcc","-DCOCOAPODS=1","-Xcc","-DDEBUG=1","-Xcc","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-Xcc","-DDEBUG=1","-Xcc","-DPB_FIELD_32BIT=1","-Xcc","-DPB_NO_PACKED_STRUCTS=1","-Xcc","-DPB_ENABLE_MALLOC=1","-emit-objc-header","-emit-objc-header-path","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","-import-objc-header","/Users/romka/linagora/TwakeMobile/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/romka/linagora/TwakeMobile/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d"],"deps-style":"makefile","signature":"56e15ad9fc9ac4cef761f29b6f47ac3b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CreateBuildDirectory /Users/romka/linagora/TwakeMobile/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/romka/linagora/TwakeMobile/build/ios","inputs":[],"outputs":["","/Users/romka/linagora/TwakeMobile/build/ios"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"09abe67582b12f283af915b1ccad9cb3"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"137d301324322e6b76672e715784f41c"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"0952b9a511864d317538f8635bae90c3"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"ea63f5b0c8c9f8443252ae31c4a43b80"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"0d5f280067ab8a5877cac09b4a89230e"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"7deb064ed5a59b427cd0e62c33eb4c44"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"7109e18d8b8807961ada03c4b88daed1"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner normal","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","x86_64-apple-ios9.0-simulator","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-L/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-L/Users/romka/linagora/TwakeMobile/ios/Flutter","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-filelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-Xlinker","-objc_abi_version","-Xlinker","2","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","-ObjC","-lsqlite3","-lz","-framework","CoreTelephony","-framework","FBLPromises","-framework","FirebaseCore","-framework","FirebaseCoreDiagnostics","-framework","FirebaseInstallations","-framework","FirebaseInstanceID","-framework","FirebaseMessaging","-framework","Foundation","-framework","GoogleDataTransport","-framework","GoogleUtilities","-framework","Protobuf","-framework","Security","-framework","SystemConfiguration","-framework","UIKit","-framework","device_info","-framework","firebase_core","-framework","firebase_messaging","-framework","nanopb","-framework","package_info","-framework","path_provider","-framework","url_launcher","-framework","webview_flutter","-weak_framework","UserNotifications","-framework","Pods_Runner","-Xlinker","-dependency_info","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat","-o","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"b00e3ebf57a217d5e0994436b78728c0"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--link","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"eff236956f363740bd9d00944288f6a8"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"mkdir","description":"MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app",""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks",""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"353a4ec274ab4e73a6de7bcafeff4e79"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"b376534566edb20abf2361eed2151d6c"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","inputs":["/Users/romka/linagora/TwakeMobile/ios/Podfile.lock/","/Users/romka/linagora/TwakeMobile/ios/Pods/Manifest.lock/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/romka/linagora/TwakeMobile/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/romka/linagora/TwakeMobile/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"9db9e36ed1114b79a76e7d411b3f2abc"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","inputs":["/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist/","/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist","/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework"],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"0f593c2c41c1f5d8bc69aef6628bdb51"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"shell","description":"Touch /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"c7a89f51ef366f6201a5b5016d8c1858"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-desc.xcbuild b/ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-desc.xcbuild new file mode 100644 index 0000000000000000000000000000000000000000..76fec523b238b107d5304a26a508295f5de09be7 GIT binary patch literal 647244 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 z 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 literal 0 HcmV?d00001 diff --git a/ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-manifest.xcbuild b/ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-manifest.xcbuild new file mode 100644 index 00000000..2e666535 --- /dev/null +++ b/ios/build/XCBuildData/a71d3030c43e1f71bc8c29ff34ef3e52-manifest.xcbuild @@ -0,0 +1,106 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/romka/linagora/TwakeMobile/build/ios": {"is-mutated":true} + "/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"is-mutated":true} + "/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner": {"is-mutated":true} + "": {"is-command-timestamp":true} + "": {"is-command-timestamp":true} + +commands: + "": {"tool":"phony","inputs":["/Users/romka/linagora/TwakeMobile/build/ios","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/_CodeSignature","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/_CodeSignature","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"roots":["/tmp/Runner.dst","/Users/romka/linagora/TwakeMobile/build/ios","/Users/romka/linagora/TwakeMobile/build/ios"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-ChangePermissions": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-CopyAside": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-StripSymbols": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--Barrier-Validate": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--InfoPlistTaskProducer": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--ProductStructureTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--XCFrameworkTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--begin-compiling": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc","","","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--entry": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--generated-headers": {"tool":"phony","inputs":["","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--immediate": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--modules-ready": {"tool":"phony","inputs":["","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase0--cp--check-pods-manifest-lock": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase1-run-script": {"tool":"phony","inputs":["","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase2-compile-sources": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase4-copy-bundle-resources": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase5-copy-files": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase6-thin-binary": {"tool":"phony","inputs":["","","","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"outputs":[""]} + "Gate target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49--phase7--cp--embed-pods-frameworks": {"tool":"phony","inputs":["","","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CodeSign /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"shell","description":"CodeSign /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework/","/Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist/","/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets/","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard/","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard/","/Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist/","","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/_CodeSignature",""],"args":["/usr/bin/codesign","--force","--sign","-","--entitlements","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent","--timestamp=none","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app"],"env":{"CODESIGN_ALLOCATE":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate"},"can-safely-interrupt":false,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"cc4d427db838c84fa46db571e98b4460"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileAssetCatalog /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app /Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app /Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","--app-icon","AppIcon","--compress-pngs","--enable-on-demand-resources","YES","--filter-for-device-model","iPod9,1","--filter-for-device-os-version","14.2","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphonesimulator","--compile","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/ios/Runner/Assets.xcassets"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"d3126b692c1a3fb5335244d1212a35d7"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios9.0-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-gmodules","-fmodules-cache-path=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DDEBUG=1","-DCOCOAPODS=1","-DDEBUG=1","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-DDEBUG=1","-DPB_FIELD_32BIT=1","-DPB_NO_PACKED_STRUCTS=1","-DPB_ENABLE_MALLOC=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-fobjc-abi-version=2","-fobjc-legacy-dispatch","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-I/Sources/FBLPromises/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d","--serialize-diagnostics","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia","-c","/Users/romka/linagora/TwakeMobile/ios/Runner/GeneratedPluginRegistrant.m","-o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d"],"deps-style":"makefile","signature":"c99b3854f2f25fda41eec33c4ca387e1"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","x86_64-apple-ios9.0-simulator","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fmodules","-gmodules","-fmodules-cache-path=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DDEBUG=1","-DCOCOAPODS=1","-DDEBUG=1","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-DDEBUG=1","-DPB_FIELD_32BIT=1","-DPB_NO_PACKED_STRUCTS=1","-DPB_ENABLE_MALLOC=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-iquote","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-I/Sources/FBLPromises/include","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-MMD","-MT","dependencies","-MF","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.d","--serialize-diagnostics","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.dia","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","-o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.d"],"deps-style":"makefile","signature":"cad7102a2fe9cbc86be2aefdc65e3495"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/LaunchScreen.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"bd5cd1c8acc968c18c420a630370867b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard": {"tool":"shell","description":"CompileStoryboard /Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--output-partial-info-plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","--auto-activate-custom-fonts","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--compilation-directory","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj","/Users/romka/linagora/TwakeMobile/ios/Runner/Base.lproj/Main.storyboard"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"1e1fcade0e45660865ac2be0f56a0d3b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler": {"tool":"shell","description":"CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/AppDelegate.swift","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-incremental","-module-name","Runner","-Onone","-enable-batch-mode","-enforce-exclusivity=checked","@/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-target","x86_64-apple-ios9.0-simulator","-g","-module-cache-path","/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-Xfrontend","-serialize-debugging-options","-enable-testing","-index-store-path","/Users/romka/Library/Developer/Xcode/DerivedData/Runner-ajpdzykajnzzuvdfrgzlotitpbce/Index/DataStore","-swift-version","5","-I","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F","/Users/romka/linagora/TwakeMobile/ios/Flutter","-parse-as-library","-c","-j8","-output-file-map","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","-parseable-output","-serialize-diagnostics","-emit-dependencies","-emit-module","-emit-module-path","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap","-Xcc","-iquote","-Xcc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","-Xcc","-iquote","-Xcc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase","-Xcc","-I/Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources","-Xcc","-I/Sources/FBLPromises/include","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64","-Xcc","-I/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","-Xcc","-DDEBUG=1","-Xcc","-DCOCOAPODS=1","-Xcc","-DDEBUG=1","-Xcc","-DGPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1","-Xcc","-DDEBUG=1","-Xcc","-DPB_FIELD_32BIT=1","-Xcc","-DPB_NO_PACKED_STRUCTS=1","-Xcc","-DPB_ENABLE_MALLOC=1","-emit-objc-header","-emit-objc-header-path","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","-import-objc-header","/Users/romka/linagora/TwakeMobile/ios/Runner/Runner-Bridging-Header.h","-pch-output-dir","/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","-working-directory","/Users/romka/linagora/TwakeMobile/ios"],"env":{"DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk"},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d"],"deps-style":"makefile","signature":"56e15ad9fc9ac4cef761f29b6f47ac3b"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist /Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Flutter/AppFrameworkInfo.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist": {"tool":"copy-plist","description":"CopyPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/GoogleService-Info.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/GoogleService-Info.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CopySwiftLibs /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"embed-swift-stdlib","description":"CopySwiftLibs /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner","","",""],"outputs":[""],"deps":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/SwiftStdLibToolInputDependencies.dep"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:CreateBuildDirectory /Users/romka/linagora/TwakeMobile/build/ios": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/romka/linagora/TwakeMobile/build/ios","inputs":[],"outputs":["","/Users/romka/linagora/TwakeMobile/build/ios"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"09abe67582b12f283af915b1ccad9cb3"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/Project/x86_64.swiftsourceinfo"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"137d301324322e6b76672e715784f41c"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftdoc"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"0952b9a511864d317538f8635bae90c3"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64-apple-ios-simulator.swiftmodule"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"ea63f5b0c8c9f8443252ae31c4a43b80"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftdoc"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"0d5f280067ab8a5877cac09b4a89230e"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.swiftmodule/x86_64.swiftmodule"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"7deb064ed5a59b427cd0e62c33eb4c44"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ditto /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h": {"tool":"shell","description":"Ditto /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"args":["/usr/bin/ditto","-rsrc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner-Swift.h"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"7109e18d8b8807961ada03c4b88daed1"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Ld /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner normal": {"tool":"shell","description":"Ld /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner normal","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner","",""],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","x86_64-apple-ios9.0-simulator","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","-L/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-L/Users/romka/linagora/TwakeMobile/ios/Flutter","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher","-F/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter","-F/Users/romka/linagora/TwakeMobile/ios/Flutter","-filelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-Xlinker","-objc_abi_version","-Xlinker","2","-fobjc-arc","-fobjc-link-runtime","-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule","-ObjC","-lsqlite3","-lz","-framework","CoreTelephony","-framework","FBLPromises","-framework","FirebaseCore","-framework","FirebaseCoreDiagnostics","-framework","FirebaseInstallations","-framework","FirebaseInstanceID","-framework","FirebaseMessaging","-framework","Foundation","-framework","GoogleDataTransport","-framework","GoogleUtilities","-framework","Protobuf","-framework","Security","-framework","SystemConfiguration","-framework","UIKit","-framework","device_info","-framework","firebase_core","-framework","firebase_messaging","-framework","nanopb","-framework","package_info","-framework","path_provider","-framework","url_launcher","-framework","webview_flutter","-weak_framework","UserNotifications","-Xlinker","-sectcreate","-Xlinker","__TEXT","-Xlinker","__entitlements","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","-framework","Pods_Runner","-Xlinker","-no_adhoc_codesign","-Xlinker","-dependency_info","-Xlinker","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat","-o","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Runner"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","deps":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat"],"deps-style":"dependency-info","signature":"39756e7f094d4195965a5e8796d27254"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:LinkStoryboards": {"tool":"shell","description":"LinkStoryboards","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool","--errors","--warnings","--notices","--module","Runner","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--output-format","human-readable-text","--link","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc"],"env":{"XCODE_DEVELOPER_USR_PATH":"/Applications/Xcode.app/Contents/Developer/usr/bin/.."},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"eff236956f363740bd9d00944288f6a8"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"mkdir","description":"MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks": {"tool":"mkdir","description":"MkDir /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks",""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Run Script /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"shell","description":"PhaseScriptExecution Run Script /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"6Z27TKCGWF.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_ENTITLEMENTS_SECTION":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","TeamIdentifierPrefix":"6Z27TKCGWF.","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"18a539f045baf362170f4f084e6c44b2"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution Thin Binary /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"shell","description":"PhaseScriptExecution Thin Binary /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","",""],"outputs":[""],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"6Z27TKCGWF.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_ENTITLEMENTS_SECTION":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","TeamIdentifierPrefix":"6Z27TKCGWF.","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"always-out-of-date":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"2c47ba3d0bc713277e773b99344c66c6"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Check Pods Manifest.lock /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","inputs":["/Users/romka/linagora/TwakeMobile/ios/Podfile.lock/","/Users/romka/linagora/TwakeMobile/ios/Pods/Manifest.lock/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt"],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"6Z27TKCGWF.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_ENTITLEMENTS_SECTION":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_0":"/Users/romka/linagora/TwakeMobile/ios/Podfile.lock","SCRIPT_INPUT_FILE_1":"/Users/romka/linagora/TwakeMobile/ios/Pods/Manifest.lock","SCRIPT_INPUT_FILE_COUNT":"2","SCRIPT_INPUT_FILE_LIST_COUNT":"0","SCRIPT_OUTPUT_FILE_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Pods-Runner-checkManifestLockResult.txt","SCRIPT_OUTPUT_FILE_COUNT":"1","SCRIPT_OUTPUT_FILE_LIST_COUNT":"0","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","TeamIdentifierPrefix":"6Z27TKCGWF.","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"e7d8a1a1e509dfaa7225f9086167dec0"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:PhaseScriptExecution [CP] Embed Pods Frameworks /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh": {"tool":"shell","description":"PhaseScriptExecution [CP] Embed Pods Frameworks /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","inputs":["/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist/","/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist","/Users/romka/linagora/TwakeMobile/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/GoogleUtilities.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/FBLPromises.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Protobuf.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/device_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/nanopb.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/package_info.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/path_provider.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/webview_flutter.framework"],"args":["/bin/sh","-c","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"],"env":{"ACTION":"build","AD_HOC_CODE_SIGNING_ALLOWED":"YES","ALTERNATE_GROUP":"staff","ALTERNATE_MODE":"u+w,go-w,a+rX","ALTERNATE_OWNER":"romka","ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","ALWAYS_SEARCH_USER_PATHS":"NO","ALWAYS_USE_SEPARATE_HEADERMAPS":"NO","APPLE_INTERNAL_DEVELOPER_DIR":"/AppleInternal/Developer","APPLE_INTERNAL_DIR":"/AppleInternal","APPLE_INTERNAL_DOCUMENTATION_DIR":"/AppleInternal/Documentation","APPLE_INTERNAL_LIBRARY_DIR":"/AppleInternal/Library","APPLE_INTERNAL_TOOLS":"/AppleInternal/Developer/Tools","APPLICATION_EXTENSION_API_ONLY":"NO","APPLY_RULES_IN_COPY_FILES":"NO","APPLY_RULES_IN_COPY_HEADERS":"NO","ARCHS":"x86_64","ARCHS_STANDARD":"arm64 x86_64 i386","ARCHS_STANDARD_32_64_BIT":"arm64 i386 x86_64","ARCHS_STANDARD_32_BIT":"i386","ARCHS_STANDARD_64_BIT":"arm64 x86_64","ARCHS_STANDARD_INCLUDING_64_BIT":"arm64 x86_64 i386","ARCHS_UNIVERSAL_IPHONE_OS":"arm64 i386 x86_64","ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_FILTER_FOR_DEVICE_MODEL":"iPod9,1","ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION":"14.2","AVAILABLE_PLATFORMS":"appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator","AppIdentifierPrefix":"6Z27TKCGWF.","BITCODE_GENERATION_MODE":"marker","BUILD_ACTIVE_RESOURCES_ONLY":"YES","BUILD_COMPONENTS":"headers build","BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_LIBRARY_FOR_DISTRIBUTION":"NO","BUILD_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","BUILD_STYLE":"","BUILD_VARIANTS":"normal","BUILT_PRODUCTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","BUNDLE_CONTENTS_FOLDER_PATH_deep":"Contents/","BUNDLE_EXECUTABLE_FOLDER_NAME_deep":"MacOS","BUNDLE_FORMAT":"shallow","BUNDLE_FRAMEWORKS_FOLDER_PATH":"Frameworks","BUNDLE_PLUGINS_FOLDER_PATH":"PlugIns","BUNDLE_PRIVATE_HEADERS_FOLDER_PATH":"PrivateHeaders","BUNDLE_PUBLIC_HEADERS_FOLDER_PATH":"Headers","CACHE_ROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CCHROOT":"/var/folders/38/ggbxcbv50p1c3rzkkb4nn85m0000gn/C/com.apple.DeveloperTools/12.2-12B45b/Xcode","CHMOD":"/bin/chmod","CHOWN":"/usr/sbin/chown","CLANG_ANALYZER_NONNULL":"YES","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_MODULES_BUILD_SESSION_FILE":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_DIRECT_OBJC_ISA_USAGE":"YES_ERROR","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_OBJC_ROOT_CLASS":"YES_ERROR","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CLASS_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses","CLEAN_PRECOMPS":"YES","CLONE_HEADERS":"NO","CODESIGNING_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","CODE_SIGNING_ALLOWED":"YES","CODE_SIGNING_REQUIRED":"YES","CODE_SIGN_CONTEXT_CLASS":"XCiPhoneSimulatorCodeSignContext","CODE_SIGN_ENTITLEMENTS":"Runner/Runner.entitlements","CODE_SIGN_IDENTITY":"-","CODE_SIGN_INJECT_BASE_ENTITLEMENTS":"YES","COLOR_DIAGNOSTICS":"NO","COMBINE_HIDPI_IMAGES":"NO","COMPILER_INDEX_STORE_ENABLE":"Default","COMPOSITE_SDK_DIRS":"/Users/romka/linagora/TwakeMobile/build/ios/CompositeSDKs","COMPRESS_PNG_FILES":"YES","CONFIGURATION":"Debug","CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","CONFIGURATION_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator","CONTENTS_FOLDER_PATH":"Runner.app","COPYING_PRESERVES_HFS_DATA":"NO","COPY_HEADERS_RUN_UNIFDEF":"NO","COPY_PHASE_STRIP":"NO","COPY_RESOURCES_FROM_STATIC_FRAMEWORKS":"YES","CORRESPONDING_DEVICE_PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform","CORRESPONDING_DEVICE_PLATFORM_NAME":"iphoneos","CORRESPONDING_DEVICE_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk","CORRESPONDING_DEVICE_SDK_NAME":"iphoneos14.2","CP":"/bin/cp","CREATE_INFOPLIST_SECTION_IN_BINARY":"NO","CURRENT_ARCH":"undefined_arch","CURRENT_PROJECT_VERSION":"4","CURRENT_VARIANT":"normal","DART_DEFINES":"flutter.inspector.structuredErrors%3Dtrue","DART_OBFUSCATION":"false","DEAD_CODE_STRIPPING":"YES","DEBUGGING_SYMBOLS":"YES","DEBUG_INFORMATION_FORMAT":"dwarf","DEFAULT_COMPILER":"com.apple.compilers.llvm.clang.1_0","DEFAULT_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","DEFAULT_KEXT_INSTALL_PATH":"/System/Library/Extensions","DEFINES_MODULE":"NO","DEPLOYMENT_LOCATION":"NO","DEPLOYMENT_POSTPROCESSING":"NO","DEPLOYMENT_TARGET_CLANG_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_CLANG_FLAG_NAME":"mios-simulator-version-min","DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX":"-mios-simulator-version-min=","DEPLOYMENT_TARGET_LD_ENV_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_LD_FLAG_NAME":"ios_simulator_version_min","DEPLOYMENT_TARGET_SETTING_NAME":"IPHONEOS_DEPLOYMENT_TARGET","DEPLOYMENT_TARGET_SUGGESTED_VALUES":"9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 14.0 14.1 14.2","DERIVED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DERIVED_SOURCES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources","DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","DEVELOPER_FRAMEWORKS_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_FRAMEWORKS_DIR_QUOTED":"/Applications/Xcode.app/Contents/Developer/Library/Frameworks","DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Library","DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs","DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Tools","DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","DEVELOPMENT_LANGUAGE":"en","DEVELOPMENT_TEAM":"6Z27TKCGWF","DOCUMENTATION_FOLDER_PATH":"Runner.app/en.lproj/Documentation","DONT_GENERATE_INFOPLIST_FILE":"NO","DO_HEADER_SCANNING_IN_JAM":"NO","DSTROOT":"/tmp/Runner.dst","DT_TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","DWARF_DSYM_FILE_NAME":"Runner.app.dSYM","DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT":"NO","DWARF_DSYM_FOLDER_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","EFFECTIVE_PLATFORM_NAME":"-iphonesimulator","EMBEDDED_CONTENT_CONTAINS_SWIFT":"NO","EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE":"NO","ENABLE_BITCODE":"NO","ENABLE_DEFAULT_HEADER_SEARCH_PATHS":"YES","ENABLE_HARDENED_RUNTIME":"NO","ENABLE_HEADER_DEPENDENCIES":"YES","ENABLE_ON_DEMAND_RESOURCES":"YES","ENABLE_PREVIEWS":"NO","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","ENABLE_TESTING_SEARCH_PATHS":"NO","ENTITLEMENTS_DESTINATION":"__entitlements","ENTITLEMENTS_REQUIRED":"YES","EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS":".DS_Store .svn .git .hg CVS","EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES":"*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj","EXECUTABLES_FOLDER_PATH":"Runner.app/Executables","EXECUTABLE_FOLDER_PATH":"Runner.app","EXECUTABLE_NAME":"Runner","EXECUTABLE_PATH":"Runner.app/Runner","EXPANDED_CODE_SIGN_IDENTITY":"-","EXPANDED_CODE_SIGN_IDENTITY_NAME":"-","FILE_LIST":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList","FIXED_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles","FLUTTER_APPLICATION_PATH":"/Users/romka/linagora/TwakeMobile","FLUTTER_BUILD_DIR":"build","FLUTTER_BUILD_NAME":"0.1.0","FLUTTER_BUILD_NUMBER":"0.1.0","FLUTTER_ROOT":"/Users/romka/flutter","FLUTTER_TARGET":"/Users/romka/linagora/TwakeMobile/lib/main.dart","FRAMEWORKS_FOLDER_PATH":"Runner.app/Frameworks","FRAMEWORK_FLAG_PREFIX":"-framework","FRAMEWORK_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter\" /Users/romka/linagora/TwakeMobile/ios/Flutter","FRAMEWORK_VERSION":"A","FULL_PRODUCT_NAME":"Runner.app","GCC3_VERSION":"3.3","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_DYNAMIC_NO_PIC":"NO","GCC_INLINES_ARE_PRIVATE_EXTERN":"YES","GCC_NO_COMMON_BLOCKS":"YES","GCC_OBJC_LEGACY_DISPATCH":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PFE_FILE_C_DIALECTS":"c objective-c c++ objective-c++","GCC_PREPROCESSOR_DEFINITIONS":"DEBUG=1 COCOAPODS=1 DEBUG=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1","GCC_SYMBOLS_PRIVATE_EXTERN":"NO","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"com.apple.compilers.llvm.clang.1_0","GCC_VERSION_IDENTIFIER":"com_apple_compilers_llvm_clang_1_0","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"YES_ERROR","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES_AGGRESSIVE","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_VARIABLE":"YES","GENERATED_MODULEMAP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/GeneratedModuleMaps-iphonesimulator","GENERATE_MASTER_OBJECT_FILE":"NO","GENERATE_PKGINFO_FILE":"YES","GENERATE_PROFILING_CODE":"NO","GENERATE_TEXT_BASED_STUBS":"NO","GID":"20","GROUP":"staff","HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT":"YES","HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES":"YES","HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS":"YES","HEADERMAP_INCLUDES_PROJECT_HEADERS":"YES","HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES":"YES","HEADERMAP_USES_VFS":"NO","HEADER_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/include \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCore/FirebaseCore.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstallations/FirebaseInstallations.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseInstanceID/FirebaseInstanceID.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/FirebaseMessaging/FirebaseMessaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleDataTransport/GoogleDataTransport.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/GoogleUtilities/GoogleUtilities.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/PromisesObjC/FBLPromises.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Protobuf/Protobuf.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/device_info/device_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_core/firebase_core.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/firebase_messaging/firebase_messaging.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/nanopb/nanopb.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/package_info/package_info.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/path_provider/path_provider.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/webview_flutter/webview_flutter.framework/Headers\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public\" \"/Users/romka/linagora/TwakeMobile/ios/Pods/Headers/Public/Firebase\" /Users/romka/linagora/TwakeMobile/ios/Pods/Firebase/CoreOnly/Sources \"/Sources/FBLPromises/include\"","HIDE_BITCODE_SYMBOLS":"YES","HOME":"/Users/romka","ICONV":"/usr/bin/iconv","INFOPLIST_EXPAND_BUILD_SETTINGS":"YES","INFOPLIST_FILE":"Runner/Info.plist","INFOPLIST_OUTPUT_FORMAT":"binary","INFOPLIST_PATH":"Runner.app/Info.plist","INFOPLIST_PREPROCESS":"NO","INFOSTRINGS_PATH":"Runner.app/en.lproj/InfoPlist.strings","INLINE_PRIVATE_FRAMEWORKS":"NO","INSTALLHDRS_COPY_PHASE":"NO","INSTALLHDRS_SCRIPT_PHASE":"NO","INSTALL_DIR":"/tmp/Runner.dst/Applications","INSTALL_GROUP":"staff","INSTALL_MODE_FLAG":"u+w,go-w,a+rX","INSTALL_OWNER":"romka","INSTALL_PATH":"/Applications","INSTALL_ROOT":"/tmp/Runner.dst","IPHONEOS_DEPLOYMENT_TARGET":"9.0","JAVAC_DEFAULT_FLAGS":"-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8","JAVA_APP_STUB":"/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub","JAVA_ARCHIVE_CLASSES":"YES","JAVA_ARCHIVE_TYPE":"JAR","JAVA_COMPILER":"/usr/bin/javac","JAVA_FOLDER_PATH":"Runner.app/Java","JAVA_FRAMEWORK_RESOURCES_DIRS":"Resources","JAVA_JAR_FLAGS":"cv","JAVA_SOURCE_SUBDIR":".","JAVA_USE_DEPENDENCIES":"YES","JAVA_ZIP_FLAGS":"-urg","JIKES_DEFAULT_FLAGS":"+E +OLDCSO","KEEP_PRIVATE_EXTERNS":"NO","LD_DEPENDENCY_INFO_FILE":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat","LD_ENTITLEMENTS_SECTION":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","LD_GENERATE_MAP_FILE":"NO","LD_MAP_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt","LD_NO_PIE":"NO","LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER":"YES","LD_RUNPATH_SEARCH_PATHS":" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks","LEGACY_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer","LEX":"lex","LIBRARY_DEXT_INSTALL_PATH":"/Library/DriverExtensions","LIBRARY_FLAG_NOSPACE":"YES","LIBRARY_FLAG_PREFIX":"-l","LIBRARY_KEXT_INSTALL_PATH":"/Library/Extensions","LIBRARY_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator /Users/romka/linagora/TwakeMobile/ios/Flutter","LINKER_DISPLAYS_MANGLED_NAMES":"NO","LINK_FILE_LIST_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","LINK_WITH_STANDARD_LIBRARIES":"YES","LLVM_TARGET_TRIPLE_OS_VERSION":"ios9.0","LLVM_TARGET_TRIPLE_SUFFIX":"-simulator","LLVM_TARGET_TRIPLE_VENDOR":"apple","LOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app/en.lproj","LOCALIZED_STRING_MACRO_NAMES":"NSLocalizedString CFCopyLocalizedString","LOCALIZED_STRING_SWIFTUI_SUPPORT":"YES","LOCAL_ADMIN_APPS_DIR":"/Applications/Utilities","LOCAL_APPS_DIR":"/Applications","LOCAL_DEVELOPER_DIR":"/Library/Developer","LOCAL_LIBRARY_DIR":"/Library","LOCROOT":"/Users/romka/linagora/TwakeMobile/ios","LOCSYMROOT":"/Users/romka/linagora/TwakeMobile/ios","MACH_O_TYPE":"mh_execute","MAC_OS_X_PRODUCT_BUILD_VERSION":"19H2","MAC_OS_X_VERSION_ACTUAL":"101507","MAC_OS_X_VERSION_MAJOR":"101500","MAC_OS_X_VERSION_MINOR":"1507","MARKETING_VERSION":"1.3","METAL_LIBRARY_FILE_BASE":"default","METAL_LIBRARY_OUTPUT_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","MODULES_FOLDER_PATH":"Runner.app/Modules","MODULE_CACHE_DIR":"/Users/romka/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","MTL_ENABLE_DEBUG_INFO":"YES","NATIVE_ARCH":"x86_64","NATIVE_ARCH_32_BIT":"i386","NATIVE_ARCH_64_BIT":"x86_64","NATIVE_ARCH_ACTUAL":"x86_64","NO_COMMON":"YES","OBJC_ABI_VERSION":"2","OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects","OBJECT_FILE_DIR_normal":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","OBJROOT":"/Users/romka/linagora/TwakeMobile/build/ios","ONLY_ACTIVE_ARCH":"YES","OS":"MACOS","OSAC":"/usr/bin/osacompile","OTHER_LDFLAGS":" -ObjC -l\"sqlite3\" -l\"z\" -framework \"CoreTelephony\" -framework \"FBLPromises\" -framework \"FirebaseCore\" -framework \"FirebaseCoreDiagnostics\" -framework \"FirebaseInstallations\" -framework \"FirebaseInstanceID\" -framework \"FirebaseMessaging\" -framework \"Foundation\" -framework \"GoogleDataTransport\" -framework \"GoogleUtilities\" -framework \"Protobuf\" -framework \"Security\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"device_info\" -framework \"firebase_core\" -framework \"firebase_messaging\" -framework \"nanopb\" -framework \"package_info\" -framework \"path_provider\" -framework \"url_launcher\" -framework \"webview_flutter\" -weak_framework \"UserNotifications\"","PACKAGE_CONFIG":"/Users/romka/linagora/TwakeMobile/.dart_tool/package_config.json","PACKAGE_TYPE":"com.apple.package-type.wrapper.application","PASCAL_STRINGS":"YES","PATH":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES":"/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms","PBDEVELOPMENTPLIST_PATH":"Runner.app/pbdevelopment.plist","PER_ARCH_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch","PER_VARIANT_OBJECT_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal","PKGINFO_FILE_PATH":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo","PKGINFO_PATH":"Runner.app/PkgInfo","PLATFORM_DEVELOPER_APPLICATIONS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications","PLATFORM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin","PLATFORM_DEVELOPER_LIBRARY_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library","PLATFORM_DEVELOPER_SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs","PLATFORM_DEVELOPER_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools","PLATFORM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr","PLATFORM_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform","PLATFORM_DISPLAY_NAME":"iOS Simulator","PLATFORM_FAMILY_NAME":"iOS","PLATFORM_NAME":"iphonesimulator","PLATFORM_PREFERRED_ARCH":"x86_64","PLATFORM_PRODUCT_BUILD_VERSION":"18B79","PLIST_FILE_OUTPUT_FORMAT":"binary","PLUGINS_FOLDER_PATH":"Runner.app/PlugIns","PODS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios","PODS_CONFIGURATION_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","PODS_PODFILE_DIR_PATH":"/Users/romka/linagora/TwakeMobile/ios/.","PODS_ROOT":"/Users/romka/linagora/TwakeMobile/ios/Pods","PODS_XCFRAMEWORKS_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates","PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR":"YES","PRECOMP_DESTINATION_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders","PRESERVE_DEAD_CODE_INITS_AND_TERMS":"NO","PRIVATE_HEADERS_FOLDER_PATH":"Runner.app/PrivateHeaders","PRODUCT_BUNDLE_IDENTIFIER":"twake","PRODUCT_BUNDLE_PACKAGE_TYPE":"APPL","PRODUCT_MODULE_NAME":"Runner","PRODUCT_NAME":"Runner","PRODUCT_SETTINGS_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","PRODUCT_TYPE":"com.apple.product-type.application","PROFILING_CODE":"NO","PROJECT":"Runner","PROJECT_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/DerivedSources","PROJECT_DIR":"/Users/romka/linagora/TwakeMobile/ios","PROJECT_FILE_PATH":"/Users/romka/linagora/TwakeMobile/ios/Runner.xcodeproj","PROJECT_NAME":"Runner","PROJECT_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build","PROJECT_TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","PUBLIC_HEADERS_FOLDER_PATH":"Runner.app/Headers","RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS":"YES","REMOVE_CVS_FROM_RESOURCES":"YES","REMOVE_GIT_FROM_RESOURCES":"YES","REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES":"YES","REMOVE_HG_FROM_RESOURCES":"YES","REMOVE_SVN_FROM_RESOURCES":"YES","REZ_COLLECTOR_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources","REZ_OBJECTS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects","REZ_SEARCH_PATHS":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator ","SCAN_ALL_SOURCE_FILES_FOR_INCLUDES":"NO","SCRIPTS_FOLDER_PATH":"Runner.app/Scripts","SCRIPT_INPUT_FILE_COUNT":"0","SCRIPT_INPUT_FILE_LIST_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","SCRIPT_INPUT_FILE_LIST_COUNT":"1","SCRIPT_OUTPUT_FILE_COUNT":"0","SCRIPT_OUTPUT_FILE_LIST_0":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","SCRIPT_OUTPUT_FILE_LIST_COUNT":"1","SDKROOT":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_DIR_iphonesimulator14_2":"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk","SDK_NAME":"iphonesimulator14.2","SDK_NAMES":"iphonesimulator14.2","SDK_PRODUCT_BUILD_VERSION":"18B79","SDK_VERSION":"14.2","SDK_VERSION_ACTUAL":"140200","SDK_VERSION_MAJOR":"140000","SDK_VERSION_MINOR":"200","SED":"/usr/bin/sed","SEPARATE_STRIP":"NO","SEPARATE_SYMBOL_EDIT":"NO","SET_DIR_MODE_OWNER_GROUP":"YES","SET_FILE_MODE_OWNER_GROUP":"NO","SHALLOW_BUNDLE":"YES","SHARED_DERIVED_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/DerivedSources","SHARED_FRAMEWORKS_FOLDER_PATH":"Runner.app/SharedFrameworks","SHARED_PRECOMPS_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/SharedPrecompiledHeaders","SHARED_SUPPORT_FOLDER_PATH":"Runner.app/SharedSupport","SKIP_INSTALL":"NO","SOURCE_ROOT":"/Users/romka/linagora/TwakeMobile/ios","SRCROOT":"/Users/romka/linagora/TwakeMobile/ios","STRINGS_FILE_OUTPUT_ENCODING":"binary","STRIP_BITCODE_FROM_COPIED_FILES":"NO","STRIP_INSTALLED_PRODUCT":"YES","STRIP_STYLE":"all","STRIP_SWIFT_SYMBOLS":"YES","SUPPORTED_DEVICE_FAMILIES":"1,2","SUPPORTED_PLATFORMS":"iphoneos iphonesimulator","SUPPORTS_TEXT_BASED_API":"NO","SWIFT_OBJC_BRIDGING_HEADER":"Runner/Runner-Bridging-Header.h","SWIFT_OPTIMIZATION_LEVEL":"-Onone","SWIFT_PLATFORM_TARGET_PREFIX":"ios","SWIFT_RESPONSE_FILE_PATH_normal_x86_64":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","SWIFT_VERSION":"5.0","SYMROOT":"/Users/romka/linagora/TwakeMobile/build/ios","SYSTEM_ADMIN_APPS_DIR":"/Applications/Utilities","SYSTEM_APPS_DIR":"/Applications","SYSTEM_CORE_SERVICES_DIR":"/System/Library/CoreServices","SYSTEM_DEMOS_DIR":"/Applications/Extras","SYSTEM_DEVELOPER_APPS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications","SYSTEM_DEVELOPER_BIN_DIR":"/Applications/Xcode.app/Contents/Developer/usr/bin","SYSTEM_DEVELOPER_DEMOS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples","SYSTEM_DEVELOPER_DIR":"/Applications/Xcode.app/Contents/Developer","SYSTEM_DEVELOPER_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library","SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools","SYSTEM_DEVELOPER_JAVA_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Java Tools","SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools","SYSTEM_DEVELOPER_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes","SYSTEM_DEVELOPER_TOOLS":"/Applications/Xcode.app/Contents/Developer/Tools","SYSTEM_DEVELOPER_TOOLS_DOC_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools","SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR":"/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools","SYSTEM_DEVELOPER_USR_DIR":"/Applications/Xcode.app/Contents/Developer/usr","SYSTEM_DEVELOPER_UTILITIES_DIR":"/Applications/Xcode.app/Contents/Developer/Applications/Utilities","SYSTEM_DEXT_INSTALL_PATH":"/System/Library/DriverExtensions","SYSTEM_DOCUMENTATION_DIR":"/Library/Documentation","SYSTEM_KEXT_INSTALL_PATH":"/System/Library/Extensions","SYSTEM_LIBRARY_DIR":"/System/Library","TAPI_VERIFY_MODE":"ErrorsOnly","TARGETED_DEVICE_FAMILY":"1,2","TARGETNAME":"Runner","TARGET_BUILD_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator","TARGET_DEVICE_IDENTIFIER":"9DF8F806-4779-4546-B01E-82D087D1B75B","TARGET_DEVICE_MODEL":"iPod9,1","TARGET_DEVICE_OS_VERSION":"14.2","TARGET_NAME":"Runner","TARGET_TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILES_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_FILE_DIR":"/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build","TEMP_ROOT":"/Users/romka/linagora/TwakeMobile/build/ios","TEST_FRAMEWORK_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/Developer/Library/Frameworks","TEST_LIBRARY_SEARCH_PATHS":" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib","TOOLCHAINS":"com.apple.dt.toolchain.XcodeDefault","TOOLCHAIN_DIR":"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain","TRACK_WIDGET_CREATION":"true","TREAT_MISSING_BASELINES_AS_TEST_FAILURES":"NO","TREE_SHAKE_ICONS":"false","TeamIdentifierPrefix":"6Z27TKCGWF.","UID":"501","UNLOCALIZED_RESOURCES_FOLDER_PATH":"Runner.app","UNSTRIPPED_PRODUCT":"NO","USER":"romka","USER_APPS_DIR":"/Users/romka/Applications","USER_LIBRARY_DIR":"/Users/romka/Library","USE_DYNAMIC_NO_PIC":"YES","USE_HEADERMAP":"YES","USE_HEADER_SYMLINKS":"NO","USE_LLVM_TARGET_TRIPLES":"YES","USE_LLVM_TARGET_TRIPLES_FOR_CLANG":"YES","USE_LLVM_TARGET_TRIPLES_FOR_LD":"YES","USE_LLVM_TARGET_TRIPLES_FOR_TAPI":"YES","USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES":"YES","VALIDATE_DEVELOPMENT_ASSET_PATHS":"YES_ERROR","VALIDATE_PRODUCT":"NO","VALIDATE_WORKSPACE":"YES_ERROR","VALID_ARCHS":"arm64 arm64e i386 x86_64","VERBOSE_PBXCP":"NO","VERSIONING_SYSTEM":"apple-generic","VERSIONPLIST_PATH":"Runner.app/version.plist","VERSION_INFO_BUILDER":"romka","VERSION_INFO_FILE":"Runner_vers.c","VERSION_INFO_STRING":"\"@(#)PROGRAM:Runner PROJECT:Runner-4\"","WRAPPER_EXTENSION":"app","WRAPPER_NAME":"Runner.app","WRAPPER_SUFFIX":".app","WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES":"NO","XCODE_APP_SUPPORT_DIR":"/Applications/Xcode.app/Contents/Developer/Library/Xcode","XCODE_PRODUCT_BUILD_VERSION":"12B45b","XCODE_VERSION_ACTUAL":"1220","XCODE_VERSION_MAJOR":"1200","XCODE_VERSION_MINOR":"1220","XPCSERVICES_FOLDER_PATH":"Runner.app/XPCServices","YACC":"yacc","arch":"undefined_arch","variant":"normal"},"allow-missing-inputs":true,"working-directory":"/Users/romka/linagora/TwakeMobile/ios","control-enabled":false,"signature":"828591abdd286f0f0146f01c4233dfc5"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessInfoPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","inputs":["/Users/romka/linagora/TwakeMobile/ios/Runner/Info.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist","/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app/Info.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessProductPackaging /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent": {"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:ProcessProductPackaging /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent": {"tool":"process-product-entitlements","description":"ProcessProductPackaging /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist","",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:RegisterExecutionPolicyException /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:Touch /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app": {"tool":"shell","description":"Touch /Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","inputs":["/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/romka/linagora/TwakeMobile/build/ios/Debug-iphonesimulator/Runner.app"],"env":{},"working-directory":"/Users/romka/linagora/TwakeMobile/ios","signature":"c7a89f51ef366f6201a5b5016d8c1858"} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements-Simulated.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Entitlements.plist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/InputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-input-files-72e8dd112a6c1f068ce4ba71193ddba1-resolved.xcfilelist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/OutputFileList-D9291F36734A626D7DA5BB61-Pods-Runner-frameworks-Debug-output-files-e4a56fae219fa31a36d4422032b9146a-resolved.xcfilelist"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Runner.hmap"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-A7C08B0BFDD8B4C9D0A1B55E.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/Script-D9291F36734A626D7DA5BB61.sh"]} + "target-Runner-0cb0e2d04086f5f96ecccf863d38f8a488a783a885d8b0b3beb2e9f90bde3f49-:Debug:WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/romka/linagora/TwakeMobile/build/ios/Runner.build/Debug-iphonesimulator/Runner.build/all-product-headers.yaml"]} + diff --git a/ios/build/XCBuildData/build.db b/ios/build/XCBuildData/build.db new file mode 100644 index 0000000000000000000000000000000000000000..9d799c4c0ca10d7bb4c916f121b57b10c2ed0f97 GIT binary patch literal 303104 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 z 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

{XDq@O(oJ^-f^&}}=)riT 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

j>Anwau-jO}Geo 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.12.0-0.0 <3.0.0" + flutter: ">=1.22.2" diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 diff --git a/web/index.html b/web/index.html new file mode 100644 index 00000000..84d96178 --- /dev/null +++ b/web/index.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + twake_mobile + + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 00000000..98ef6064 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,23 @@ +{ + "name": "twake_mobile", + "short_name": "twake_mobile", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + } + ] +} From 483c437e578bfbf073a7bdf2d3a6a67d8ecb4fe2 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Wed, 27 Jan 2021 11:08:10 +0300 Subject: [PATCH 05/25] :star2: message editing, some basic functions --- lib/blocs/single_message_bloc.dart | 10 ++++- lib/events/single_message_event.dart | 3 +- lib/models/message.dart | 9 ++++ lib/models/twacode.dart | 2 +- lib/repositories/draft_repository.dart | 1 - .../message/message_edit_modal_sheet.dart | 27 ++++-------- lib/widgets/message/message_modal_sheet.dart | 41 +++++++++++++++---- lib/widgets/message/message_tile.dart | 14 +++++++ 8 files changed, 75 insertions(+), 32 deletions(-) diff --git a/lib/blocs/single_message_bloc.dart b/lib/blocs/single_message_bloc.dart index 7a39056a..ea189507 100644 --- a/lib/blocs/single_message_bloc.dart +++ b/lib/blocs/single_message_bloc.dart @@ -34,7 +34,15 @@ class SingleMessageBloc extends Bloc { @override Stream mapEventToState(SingleMessageEvent event) async* { if (event is UpdateContent) { - throw 'Not implemented yet!'; + message.updateContent({ + 'company_id': ProfileBloc.selectedCompany, + 'channel_id': message.channelId, + 'workspace_id': ProfileBloc.selectedWorkspace, + 'message_id': message.id, + 'thread_id': message.threadId, + 'original_str': event.content, + }); + yield messageReady; } else if (event is UpdateReaction) { message.updateReactions( userId: event.userId ?? ProfileBloc.userId, diff --git a/lib/events/single_message_event.dart b/lib/events/single_message_event.dart index 0a83388f..da553945 100644 --- a/lib/events/single_message_event.dart +++ b/lib/events/single_message_event.dart @@ -1,12 +1,11 @@ import 'package:equatable/equatable.dart'; -import 'package:twake/models/twacode.dart'; abstract class SingleMessageEvent extends Equatable { const SingleMessageEvent(); } class UpdateContent extends SingleMessageEvent { - final MessageTwacode content; + final String content; const UpdateContent(this.content); diff --git a/lib/models/message.dart b/lib/models/message.dart index 10effce0..54ac71a6 100644 --- a/lib/models/message.dart +++ b/lib/models/message.dart @@ -56,6 +56,15 @@ class Message extends CollectionItem { Message({this.id, this.userId, this.appId, this.creationDate}) : super(id); + void updateContent(Map body) { + String prevStr = '' + content.originalStr; + content.originalStr = body['original_str']; + _api.put(Endpoint.messages, body: body).then((_) => save()).catchError((e) { + logger.e('ERROR updating message content\n$e'); + content.originalStr = prevStr; + }); + } + void updateReactions({String userId, Map body}) { String emojiCode = body['reaction']; logger.d('Updating reaction: $emojiCode'); diff --git a/lib/models/twacode.dart b/lib/models/twacode.dart index ab48be82..91503001 100644 --- a/lib/models/twacode.dart +++ b/lib/models/twacode.dart @@ -5,7 +5,7 @@ part 'twacode.g.dart'; @JsonSerializable() class MessageTwacode { @JsonKey(name: 'original_str') - final String originalStr; + String originalStr; // @JsonKey(required: true) final List prepared; diff --git a/lib/repositories/draft_repository.dart b/lib/repositories/draft_repository.dart index 21561bb3..27068401 100644 --- a/lib/repositories/draft_repository.dart +++ b/lib/repositories/draft_repository.dart @@ -1,4 +1,3 @@ -import 'dart:convert'; import 'package:flutter/foundation.dart'; import 'package:meta/meta.dart'; import 'package:twake/services/service_bundle.dart'; diff --git a/lib/widgets/message/message_edit_modal_sheet.dart b/lib/widgets/message/message_edit_modal_sheet.dart index bafc2cd1..93043814 100644 --- a/lib/widgets/message/message_edit_modal_sheet.dart +++ b/lib/widgets/message/message_edit_modal_sheet.dart @@ -1,11 +1,13 @@ import 'package:flutter/material.dart'; +import 'package:twake/blocs/single_message_bloc.dart'; import 'package:twake/models/message.dart'; import 'package:twake/widgets/message/message_edit_field.dart'; class MessageEditModalSheet extends StatelessWidget { final Message message; + final Function onMessageSend; - MessageEditModalSheet(this.message); + MessageEditModalSheet(this.message, {this.onMessageSend}); @override Widget build(BuildContext context) { @@ -13,24 +15,11 @@ class MessageEditModalSheet extends StatelessWidget { padding: EdgeInsets.only( bottom: MediaQuery.of(context).viewInsets.bottom, ), - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - Row(children: [ - IconButton( - icon: Icon(Icons.arrow_left), - onPressed: () { - Navigator.of(context).pop(); - }), - Text('Edit'), - ]), - // Divider(), - MessageEditField( - onMessageSend: (content) {}, - onTextUpdated: (content) {}, - autofocus: true, - ), - ], + child: MessageEditField( + onMessageSend: onMessageSend, + onTextUpdated: (content) {}, + initialText: message.content.originalStr, + autofocus: true, ), ); } diff --git a/lib/widgets/message/message_modal_sheet.dart b/lib/widgets/message/message_modal_sheet.dart index ff6a0970..6ad39c19 100644 --- a/lib/widgets/message/message_modal_sheet.dart +++ b/lib/widgets/message/message_modal_sheet.dart @@ -11,6 +11,7 @@ class MessageModalSheet extends StatefulWidget { final int responsesCount; final void Function(BuildContext, String, {bool autofocus}) onReply; final void Function(BuildContext) onDelete; + final void Function(BuildContext, Function) onEdit; final Function onCopy; final bool isThread; final BuildContext ctx; @@ -22,6 +23,7 @@ class MessageModalSheet extends StatefulWidget { this.isThread: false, this.onReply, this.onDelete, + this.onEdit, this.onCopy, this.ctx, Key key, @@ -62,8 +64,8 @@ class _MessageModalSheetState extends State { return _emojiVisible ? buildEmojiBoard() : SafeArea( - child: Container( - child: Column( + child: Container( + child: Column( mainAxisSize: MainAxisSize.min, children: [ EmojiLine( @@ -74,9 +76,30 @@ class _MessageModalSheetState extends State { height: 1.0, color: Color(0xffEEEEEE), ), + if (isMe) + ListTile( + contentPadding: + const EdgeInsets.symmetric(horizontal: 16.0), + leading: Icon(Icons.edit), + title: Text( + 'Edit', + style: TextStyle( + fontSize: 16.0, + fontWeight: FontWeight.w600, + color: Color(0xff444444), + ), + ), + onTap: () { + widget.onEdit(context, (content) { + BlocProvider.of(widget.ctx) + .add(UpdateContent(content)); + }); + }, + ), if (!widget.isThread) ListTile( - contentPadding: const EdgeInsets.symmetric(horizontal: 16.0), + contentPadding: + const EdgeInsets.symmetric(horizontal: 16.0), leading: Icon(Icons.reply_sharp), title: Text( 'Reply', @@ -100,7 +123,8 @@ class _MessageModalSheetState extends State { ), if (isMe && widget.responsesCount == 0) ListTile( - contentPadding: const EdgeInsets.symmetric(horizontal: 16.0), + contentPadding: + const EdgeInsets.symmetric(horizontal: 16.0), leading: Icon(Icons.delete, color: Color(0xffFF5154)), title: Text( 'Delete', @@ -121,7 +145,8 @@ class _MessageModalSheetState extends State { color: Color(0xffEEEEEE), ), ListTile( - contentPadding: const EdgeInsets.symmetric(horizontal: 16.0), + contentPadding: + const EdgeInsets.symmetric(horizontal: 16.0), leading: Icon(Icons.copy), title: Text( 'Copy', @@ -135,8 +160,8 @@ class _MessageModalSheetState extends State { ), ], ), - ), - ); + ), + ); } } @@ -162,7 +187,7 @@ class EmojiLine extends StatelessWidget { return Container( padding: EdgeInsets.symmetric( vertical: Dim.heightMultiplier, - horizontal: 16.0,//Dim.wm2, + horizontal: 16.0, //Dim.wm2, ), constraints: BoxConstraints(maxHeight: Dim.hm7), child: Row( diff --git a/lib/widgets/message/message_tile.dart b/lib/widgets/message/message_tile.dart index 8250b54a..1e072b67 100644 --- a/lib/widgets/message/message_tile.dart +++ b/lib/widgets/message/message_tile.dart @@ -17,6 +17,7 @@ import 'package:twake/repositories/draft_repository.dart'; import 'package:twake/utils/dateformatter.dart'; import 'package:twake/widgets/common/image_avatar.dart'; import 'package:twake/widgets/common/reaction.dart'; +import 'package:twake/widgets/message/message_edit_modal_sheet.dart'; import 'package:twake/widgets/message/message_modal_sheet.dart'; @@ -44,6 +45,18 @@ class MessageTile extends StatelessWidget { ); } + void onEdit(context, onMessageSend) { + Navigator.of(context).pop(); + showModalBottomSheet( + context: context, + builder: (ctx) { + return MessageEditModalSheet( + message, + onMessageSend: onMessageSend, + ); + }); + } + onCopy({context, text}) { FlutterClipboard.copy(text); Navigator.of(context).pop(); @@ -92,6 +105,7 @@ class MessageTile extends StatelessWidget { isThread: messageState.threadId != null || hideShowAnswers, onReply: onReply, + onEdit: onEdit, ctx: ctx, onDelete: (ctx) => onDelete( ctx, From 80c3f2a4a09b5bc3446f58acdd884d0173aae2e9 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Wed, 27 Jan 2021 12:13:40 +0300 Subject: [PATCH 06/25] Added basic message editing functionallity to channel messages --- .gitignore | 1 + lib/blocs/message_edit_bloc.dart | 22 ++++ lib/events/message_edit_event.dart | 22 ++++ lib/pages/messages_page.dart | 124 ++++++++++--------- lib/states/message_edit_state.dart | 25 ++++ lib/widgets/message/message_modal_sheet.dart | 7 +- lib/widgets/message/message_tile.dart | 24 ++-- 7 files changed, 151 insertions(+), 74 deletions(-) create mode 100644 lib/blocs/message_edit_bloc.dart create mode 100644 lib/events/message_edit_event.dart create mode 100644 lib/states/message_edit_state.dart diff --git a/.gitignore b/.gitignore index 6ca970a6..a89b8e59 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ .buildlog/ .history .svn/ +pubspec.lock # IntelliJ related *.iml diff --git a/lib/blocs/message_edit_bloc.dart b/lib/blocs/message_edit_bloc.dart new file mode 100644 index 00000000..dc61a0b0 --- /dev/null +++ b/lib/blocs/message_edit_bloc.dart @@ -0,0 +1,22 @@ +import 'package:flutter_bloc/flutter_bloc.dart'; +import 'package:twake/events/message_edit_event.dart'; +import 'package:twake/states/message_edit_state.dart'; + +export 'package:twake/events/message_edit_event.dart'; +export 'package:twake/states/message_edit_state.dart'; + +class MessageEditBloc extends Bloc { + MessageEditBloc() : super(NoMessageToEdit()); + + @override + Stream mapEventToState(MessageEditEvent event) async* { + if (event is EditMessage) { + yield MessageEditing( + onMessageEditComplete: event.onMessageEditComplete, + originalStr: event.originalStr, + ); + } else if (event is CancelMessageEdit) { + yield NoMessageToEdit(); + } + } +} diff --git a/lib/events/message_edit_event.dart b/lib/events/message_edit_event.dart new file mode 100644 index 00000000..e0e02dec --- /dev/null +++ b/lib/events/message_edit_event.dart @@ -0,0 +1,22 @@ +import 'package:equatable/equatable.dart'; + +abstract class MessageEditEvent extends Equatable { + const MessageEditEvent(); +} + +class CancelMessageEdit extends MessageEditEvent { + const CancelMessageEdit(); + + @override + List get props => []; +} + +class EditMessage extends MessageEditEvent { + final Function onMessageEditComplete; + final String originalStr; + + const EditMessage({this.onMessageEditComplete, this.originalStr}); + + @override + List get props => [originalStr]; +} diff --git a/lib/pages/messages_page.dart b/lib/pages/messages_page.dart index fd94648a..17c3b507 100644 --- a/lib/pages/messages_page.dart +++ b/lib/pages/messages_page.dart @@ -2,6 +2,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:twake/blocs/base_channel_bloc.dart'; import 'package:twake/blocs/draft_bloc.dart'; +import 'package:twake/blocs/message_edit_bloc.dart'; import 'package:twake/blocs/messages_bloc.dart'; import 'package:twake/config/dimensions_config.dart' show Dim; import 'package:twake/models/channel.dart'; @@ -113,65 +114,76 @@ class MessagesPage extends StatelessWidget { body: SafeArea( child: BlocBuilder, MessagesState>( builder: (ctx, messagesState) { - return Column( - mainAxisSize: MainAxisSize.min, - children: [ - Divider( - thickness: 1.0, - height: 1.0, - color: Color(0xffEEEEEE), - ), - if (messagesState is MoreMessagesLoading && - !(messagesState is ErrorLoadingMoreMessages)) - SizedBox( - height: Dim.hm4, - width: Dim.hm4, - child: Padding( - padding: EdgeInsets.all(Dim.widthMultiplier), - child: CircularProgressIndicator(), - ), + return BlocProvider( + create: (ctx) => MessageEditBloc(), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Divider( + thickness: 1.0, + height: 1.0, + color: Color(0xffEEEEEE), ), - MessagesGroupedList(), - BlocBuilder( - buildWhen: (_, current) => - current is DraftLoaded || current is DraftReset, - builder: (context, state) { - if (state is DraftLoaded && - state.type != DraftType.thread) { - draft = state.draft; - // print('DRAFT IS LOADED: $draft'); - } else if (state is DraftReset) { - draft = ''; - } + if (messagesState is MoreMessagesLoading && + !(messagesState is ErrorLoadingMoreMessages)) + SizedBox( + height: Dim.hm4, + width: Dim.hm4, + child: Padding( + padding: EdgeInsets.all(Dim.widthMultiplier), + child: CircularProgressIndicator(), + ), + ), + MessagesGroupedList(), + BlocBuilder( + buildWhen: (_, current) => + current is DraftLoaded || current is DraftReset, + builder: (context, state) { + if (state is DraftLoaded && + state.type != DraftType.thread) { + draft = state.draft; + // print('DRAFT IS LOADED: $draft'); + } else if (state is DraftReset) { + draft = ''; + } - final channelId = messagesState.parentChannel.id; - if (messagesState.parentChannel is Channel) { - draftType = DraftType.channel; - } else if (messagesState.parentChannel is Direct) { - draftType = DraftType.direct; - } + final channelId = messagesState.parentChannel.id; + if (messagesState.parentChannel is Channel) { + draftType = DraftType.channel; + } else if (messagesState.parentChannel is Direct) { + draftType = DraftType.direct; + } - return MessageEditField( - key: UniqueKey(), - initialText: draft, - onMessageSend: (content) { - BlocProvider.of>(context).add( - SendMessage(content: content), - ); - context - .read() - .add(ResetDraft(id: channelId, type: draftType)); - }, - onTextUpdated: (text) { - context.read().add(UpdateDraft( - id: channelId, - type: draftType, - draft: text, - )); - }, - ); - }), - ], + return BlocBuilder( + builder: (ctx, state) => MessageEditField( + key: UniqueKey(), + autofocus: state is MessageEditing, + initialText: state is MessageEditing + ? state.originalStr + : draft, + onMessageSend: state is MessageEditing + ? state.onMessageEditComplete + : (content) { + BlocProvider.of>(context).add( + SendMessage(content: content), + ); + context.read().add(ResetDraft( + id: channelId, type: draftType)); + }, + onTextUpdated: state is MessageEditing + ? (text) {} + : (text) { + context.read().add(UpdateDraft( + id: channelId, + type: draftType, + draft: text, + )); + }, + ), + ); + }), + ], + ), ); }), ), diff --git a/lib/states/message_edit_state.dart b/lib/states/message_edit_state.dart new file mode 100644 index 00000000..16be6794 --- /dev/null +++ b/lib/states/message_edit_state.dart @@ -0,0 +1,25 @@ +import 'package:equatable/equatable.dart'; + +abstract class MessageEditState extends Equatable { + const MessageEditState(); +} + +class NoMessageToEdit extends MessageEditState { + const NoMessageToEdit(); + + @override + List get props => []; +} + +class MessageEditing extends MessageEditState { + final Function onMessageEditComplete; + final String originalStr; + + MessageEditing({ + this.onMessageEditComplete, + this.originalStr, + }); + + @override + List get props => [originalStr]; +} diff --git a/lib/widgets/message/message_modal_sheet.dart b/lib/widgets/message/message_modal_sheet.dart index 6ad39c19..a1b50a65 100644 --- a/lib/widgets/message/message_modal_sheet.dart +++ b/lib/widgets/message/message_modal_sheet.dart @@ -11,7 +11,7 @@ class MessageModalSheet extends StatefulWidget { final int responsesCount; final void Function(BuildContext, String, {bool autofocus}) onReply; final void Function(BuildContext) onDelete; - final void Function(BuildContext, Function) onEdit; + final void Function(BuildContext) onEdit; final Function onCopy; final bool isThread; final BuildContext ctx; @@ -90,10 +90,7 @@ class _MessageModalSheetState extends State { ), ), onTap: () { - widget.onEdit(context, (content) { - BlocProvider.of(widget.ctx) - .add(UpdateContent(content)); - }); + widget.onEdit(widget.ctx); }, ), if (!widget.isThread) diff --git a/lib/widgets/message/message_tile.dart b/lib/widgets/message/message_tile.dart index 1e072b67..d47fba96 100644 --- a/lib/widgets/message/message_tile.dart +++ b/lib/widgets/message/message_tile.dart @@ -1,9 +1,10 @@ -import 'package:flutter/material.dart'; import 'package:clipboard/clipboard.dart'; +import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_markdown/flutter_markdown.dart'; import 'package:twake/blocs/base_channel_bloc.dart'; import 'package:twake/blocs/draft_bloc.dart'; +import 'package:twake/blocs/message_edit_bloc.dart'; import 'package:twake/blocs/messages_bloc.dart'; import 'package:twake/blocs/single_message_bloc.dart'; import 'package:twake/blocs/threads_bloc.dart'; @@ -12,13 +13,10 @@ import 'package:twake/config/dimensions_config.dart' show Dim; import 'package:twake/config/styles_config.dart'; import 'package:twake/pages/thread_page.dart'; import 'package:twake/repositories/draft_repository.dart'; - // import 'package:twake/widgets/message/twacode.dart'; import 'package:twake/utils/dateformatter.dart'; import 'package:twake/widgets/common/image_avatar.dart'; import 'package:twake/widgets/common/reaction.dart'; -import 'package:twake/widgets/message/message_edit_modal_sheet.dart'; - import 'package:twake/widgets/message/message_modal_sheet.dart'; class MessageTile extends StatelessWidget { @@ -45,16 +43,16 @@ class MessageTile extends StatelessWidget { ); } - void onEdit(context, onMessageSend) { + void onEdit(context) { Navigator.of(context).pop(); - showModalBottomSheet( - context: context, - builder: (ctx) { - return MessageEditModalSheet( - message, - onMessageSend: onMessageSend, - ); - }); + BlocProvider.of(context).add( + EditMessage( + originalStr: message.content.originalStr, + onMessageEditComplete: (text) { + BlocProvider.of(context) + .add(UpdateContent(text)); + }), + ); } onCopy({context, text}) { From d50793a76171d36d25ef2f0720882339d4cad8e0 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Wed, 27 Jan 2021 12:55:39 +0300 Subject: [PATCH 07/25] Added message editing to thread messages + fixed token prolongation --- lib/pages/messages_page.dart | 2 +- lib/pages/thread_page.dart | 144 +++++++++++++++++++---------------- lib/services/init.dart | 2 +- 3 files changed, 81 insertions(+), 67 deletions(-) diff --git a/lib/pages/messages_page.dart b/lib/pages/messages_page.dart index 17c3b507..e5378f4a 100644 --- a/lib/pages/messages_page.dart +++ b/lib/pages/messages_page.dart @@ -114,7 +114,7 @@ class MessagesPage extends StatelessWidget { body: SafeArea( child: BlocBuilder, MessagesState>( builder: (ctx, messagesState) { - return BlocProvider( + return BlocProvider( create: (ctx) => MessageEditBloc(), child: Column( mainAxisSize: MainAxisSize.min, diff --git a/lib/pages/thread_page.dart b/lib/pages/thread_page.dart index 4ebca67f..f002c20d 100644 --- a/lib/pages/thread_page.dart +++ b/lib/pages/thread_page.dart @@ -2,6 +2,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:twake/blocs/base_channel_bloc.dart'; import 'package:twake/blocs/draft_bloc.dart'; +import 'package:twake/blocs/message_edit_bloc.dart'; import 'package:twake/blocs/threads_bloc.dart'; import 'package:twake/config/dimensions_config.dart' show Dim; import 'package:twake/models/direct.dart'; @@ -102,74 +103,87 @@ class ThreadPage extends StatelessWidget { ), body: SafeArea( child: BlocListener, MessagesState>( - listener: (ctx, state) { - state = state; - if (state is ErrorSendingMessage) { - FocusManager.instance.primaryFocus.unfocus(); - Scaffold.of(ctx).showSnackBar( - SnackBar( - content: Text('Error sending message, no connection'), - ), - ); - } - }, - child: Container( - constraints: BoxConstraints( - maxHeight: Dim.heightPercent(88), - minHeight: Dim.heightPercent(78), + listener: (ctx, state) { + state = state; + if (state is ErrorSendingMessage) { + FocusManager.instance.primaryFocus.unfocus(); + Scaffold.of(ctx).showSnackBar( + SnackBar( + content: Text('Error sending message, no connection'), ), - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - Divider( - thickness: 1.0, - height: 1.0, - color: Color(0xffEEEEEE), - ), - ThreadMessagesList(), - BlocBuilder( - buildWhen: (_, current) => - current is DraftLoaded || current is DraftReset, - builder: (context, state) { - if (state is DraftLoaded && - state.type != DraftType.channel && - state.type != DraftType.direct) { - draft = state.draft; - // print('DRAFT IS LOADED: $draft'); - } else if (state is DraftReset) { - draft = ''; - } - final threadState = - BlocProvider.of>(context).state; - threadId = threadState.threadMessage.id; + ); + } + }, + child: Container( + constraints: BoxConstraints( + maxHeight: Dim.heightPercent(88), + minHeight: Dim.heightPercent(78), + ), + child: BlocProvider( + create: (ctx) => MessageEditBloc(), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Divider( + thickness: 1.0, + height: 1.0, + color: Color(0xffEEEEEE), + ), + ThreadMessagesList(), + BlocBuilder( + buildWhen: (_, current) => + current is DraftLoaded || current is DraftReset, + builder: (context, state) { + if (state is DraftLoaded && + state.type != DraftType.channel && + state.type != DraftType.direct) { + draft = state.draft; + } else if (state is DraftReset) { + draft = ''; + } + final threadState = + BlocProvider.of>(context).state; + threadId = threadState.threadMessage.id; - return MessageEditField( + return BlocBuilder( + builder: (ctx, state) => MessageEditField( key: UniqueKey(), - initialText: draft ?? '', - onMessageSend: (content) { - BlocProvider.of>(context).add( - SendMessage( - content: content, - channelId: threadState.parentChannel.id, - threadId: threadState.threadMessage.id, - ), - ); - context.read().add(ResetDraft( - id: threadState.threadMessage.id, - type: DraftType.thread)); - }, - onTextUpdated: (text) { - context.read().add(UpdateDraft( - id: threadId, - type: DraftType.thread, - draft: text, - )); - }, - autofocus: autofocus, - ); - }), - ], - ))), + initialText: state is MessageEditing + ? state.originalStr + : draft ?? '', + onMessageSend: state is MessageEditing + ? state.onMessageEditComplete + : (content) { + BlocProvider.of>(context) + .add( + SendMessage( + content: content, + channelId: threadState.parentChannel.id, + threadId: threadState.threadMessage.id, + ), + ); + context.read().add(ResetDraft( + id: threadState.threadMessage.id, + type: DraftType.thread)); + }, + onTextUpdated: state is MessageEditing + ? (text) {} + : (text) { + context.read().add(UpdateDraft( + id: threadId, + type: DraftType.thread, + draft: text, + )); + }, + autofocus: autofocus || state is MessageEditing, + ), + ); + }), + ], + ), + ), + ), + ), ), ); } diff --git a/lib/services/init.dart b/lib/services/init.dart index 42ce689e..06bde0fe 100644 --- a/lib/services/init.dart +++ b/lib/services/init.dart @@ -22,7 +22,7 @@ Future initAuth() async { final _api = Api(); final _state = await Connectivity().checkConnectivity(); - if (_state == ConnectivityResult.none) _api.hasConnection = false; + _api.hasConnection = _state != ConnectivityResult.none; if (kDebugMode) Logger.level = Level.debug; From 769cc7642578b9ed9e866177021654da35936be6 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Wed, 27 Jan 2021 15:27:38 +0300 Subject: [PATCH 08/25] Added instant message sending (but it's still pretty glitchy) --- .gitignore | 2 +- lib/blocs/messages_bloc.dart | 42 +- lib/blocs/threads_bloc.dart | 57 +- lib/events/messages_event.dart | 10 + lib/models/message.dart | 13 +- lib/repositories/collection_repository.dart | 4 + pubspec.lock | 905 -------------------- 7 files changed, 100 insertions(+), 933 deletions(-) delete mode 100644 pubspec.lock diff --git a/.gitignore b/.gitignore index a89b8e59..d48397dd 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ .buildlog/ .history .svn/ -pubspec.lock +/pubspec.lock # IntelliJ related *.iml diff --git a/lib/blocs/messages_bloc.dart b/lib/blocs/messages_bloc.dart index 16c3c525..345a417d 100644 --- a/lib/blocs/messages_bloc.dart +++ b/lib/blocs/messages_bloc.dart @@ -212,25 +212,47 @@ class MessagesBloc yield newState; } } else if (event is SendMessage) { - final success = await repository.pushOne(_makeQueryParams(event)); - if (!success) { - yield ErrorSendingMessage( - messages: repository.items, - force: DateTime.now().toString(), - parentChannel: selectedChannel, - ); - return; - } + final String dummyId = DateTime.now().toString(); + final body = _makeQueryParams(event); + var tempItem = Message( + id: dummyId, + threadId: body['thread_id'], + userId: ProfileBloc.userId, + creationDate: DateTime.now().millisecondsSinceEpoch ~/ 1000, + content: MessageTwacode(originalStr: body['original_str']), + reactions: {}, + responsesCount: 0, + channelId: body['channel_id'], + ); + repository.pushOne( + body, + addToItems: false, + onError: () { + this.repository.items.removeWhere((m) => m.id == dummyId); + this.add(GenerateErrorSendingMessage()); + }, + onSuccess: (message) { + tempItem.id = message.id; + this.add(FinishLoadingMessages()); + _updateParentChannel(); + }, + ); + this.repository.items.add(tempItem); _sortItems(); yield MessagesLoaded( messages: repository.items, messageCount: repository.itemsCount, parentChannel: selectedChannel, ); - _updateParentChannel(); } else if (event is ClearMessages) { await repository.clean(); yield MessagesEmpty(parentChannel: selectedChannel); + } else if (event is GenerateErrorSendingMessage) { + yield ErrorSendingMessage( + messages: repository.items, + force: DateTime.now().toString(), + parentChannel: selectedChannel, + ); } else if (event is SelectMessage) { repository.select(event.messageId); yield MessageSelected( diff --git a/lib/blocs/threads_bloc.dart b/lib/blocs/threads_bloc.dart index 68629b8b..f5d5c9e1 100644 --- a/lib/blocs/threads_bloc.dart +++ b/lib/blocs/threads_bloc.dart @@ -123,24 +123,49 @@ class ThreadsBloc )); _updateParentChannel(totalModifier: -1); } else if (event is SendMessage) { - final success = await repository.pushOne(_makeQueryParams(event)); - if (!success) { - yield ErrorSendingMessage( - messages: repository.items, - force: DateTime.now().toString(), - threadMessage: threadMessage, - parentChannel: parentChannel, - ); - return; - } + final String dummyId = DateTime.now().toString(); + final body = _makeQueryParams(event); + var tempItem = Message( + id: dummyId, + threadId: body['thread_id'], + userId: ProfileBloc.userId, + creationDate: DateTime.now().millisecondsSinceEpoch ~/ 1000, + content: MessageTwacode(originalStr: body['original_str']), + reactions: {}, + responsesCount: 0, + channelId: body['channel_id'], + ); + repository.pushOne( + body, + addToItems: false, + onError: () { + this.repository.items.removeWhere((m) => m.id == dummyId); + this.add(GenerateErrorSendingMessage()); + }, + onSuccess: (message) { + tempItem.id = message.id; + this.add(FinishLoadingMessages()); + messagesBloc.add(ModifyResponsesCount( + channelId: event.channelId, + threadId: event.threadId, + modifier: 1, + )); + _updateParentChannel(); + }, + ); + this.repository.items.add(tempItem); _sortItems(); yield messagesLoaded; - messagesBloc.add(ModifyResponsesCount( - channelId: event.channelId, - threadId: event.threadId, - modifier: 1, - )); - _updateParentChannel(); + } else if (event is FinishLoadingMessages) { + _sortItems(); + yield messagesLoaded; + } else if (event is GenerateErrorSendingMessage) { + yield ErrorSendingMessage( + messages: repository.items, + force: DateTime.now().toString(), + threadMessage: threadMessage, + parentChannel: parentChannel, + ); } else if (event is ClearMessages) { await repository.clean(); yield MessagesEmpty( diff --git a/lib/events/messages_event.dart b/lib/events/messages_event.dart index 85fa542b..2ccb0eb2 100644 --- a/lib/events/messages_event.dart +++ b/lib/events/messages_event.dart @@ -169,6 +169,16 @@ class SelectMessage extends MessagesEvent { } } +class GenerateErrorSendingMessage extends MessagesEvent { + @override + List get props => []; + + @override + Map toMap() { + return {}; + } +} + class GenerateErrorLoadingMore extends MessagesEvent { @override List get props => []; diff --git a/lib/models/message.dart b/lib/models/message.dart index 54ac71a6..90c44249 100644 --- a/lib/models/message.dart +++ b/lib/models/message.dart @@ -6,6 +6,7 @@ import 'package:twake/services/endpoints.dart'; import 'package:twake/services/service_bundle.dart'; import 'twacode.dart'; +export 'twacode.dart'; part 'message.g.dart'; @@ -54,7 +55,17 @@ class Message extends CollectionItem { @JsonKey(ignore: true) final _storage = Storage(); - Message({this.id, this.userId, this.appId, this.creationDate}) : super(id); + Message( + {this.id, + this.userId, + this.appId, + this.creationDate, + this.threadId, + this.content, + this.channelId, + this.responsesCount, + this.reactions}) + : super(id); void updateContent(Map body) { String prevStr = '' + content.originalStr; diff --git a/lib/repositories/collection_repository.dart b/lib/repositories/collection_repository.dart index 473de05d..d1db32d7 100644 --- a/lib/repositories/collection_repository.dart +++ b/lib/repositories/collection_repository.dart @@ -182,6 +182,8 @@ class CollectionRepository { Future pushOne( Map body, { + Function onError, + Function(T) onSuccess, addToItems = true, }) async { logger.d('Sending item $T to api...'); @@ -190,11 +192,13 @@ class CollectionRepository { resp = (await _api.post(apiEndpoint, body: body)); } catch (error) { logger.e('Error while sending $T item to api\n${error.message}'); + if (onError != null) onError(); return false; } logger.d('RESPONSE AFTER SENDING ITEM: $resp'); final item = _typeToConstructor[T](resp); if (addToItems) this.items.add(item); + if (onSuccess != null) onSuccess(item); saveOne(item); return true; } diff --git a/pubspec.lock b/pubspec.lock deleted file mode 100644 index 2b9c4d83..00000000 --- a/pubspec.lock +++ /dev/null @@ -1,905 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - _fe_analyzer_shared: - dependency: transitive - description: - name: _fe_analyzer_shared - url: "https://pub.dartlang.org" - source: hosted - version: "14.0.0" - analyzer: - dependency: transitive - description: - name: analyzer - url: "https://pub.dartlang.org" - source: hosted - version: "0.41.2" - archive: - dependency: transitive - description: - name: archive - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.13" - args: - dependency: transitive - description: - name: args - url: "https://pub.dartlang.org" - source: hosted - version: "1.6.0" - async: - dependency: transitive - description: - name: async - url: "https://pub.dartlang.org" - source: hosted - version: "2.5.0-nullsafety.3" - bloc: - dependency: transitive - description: - name: bloc - url: "https://pub.dartlang.org" - source: hosted - version: "6.1.1" - boolean_selector: - dependency: transitive - description: - name: boolean_selector - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.0-nullsafety.3" - build: - dependency: transitive - description: - name: build - url: "https://pub.dartlang.org" - source: hosted - version: "1.6.1" - build_config: - dependency: transitive - description: - name: build_config - url: "https://pub.dartlang.org" - source: hosted - version: "0.4.5" - build_daemon: - dependency: transitive - description: - name: build_daemon - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.6" - build_resolvers: - dependency: transitive - description: - name: build_resolvers - url: "https://pub.dartlang.org" - source: hosted - version: "1.5.2" - build_runner: - dependency: "direct dev" - description: - name: build_runner - url: "https://pub.dartlang.org" - source: hosted - version: "1.11.0" - build_runner_core: - dependency: transitive - description: - name: build_runner_core - url: "https://pub.dartlang.org" - source: hosted - version: "6.1.6" - built_collection: - dependency: transitive - description: - name: built_collection - url: "https://pub.dartlang.org" - source: hosted - version: "4.3.2" - built_value: - dependency: transitive - description: - name: built_value - url: "https://pub.dartlang.org" - source: hosted - version: "7.1.0" - characters: - dependency: transitive - description: - name: characters - url: "https://pub.dartlang.org" - source: hosted - version: "1.1.0-nullsafety.5" - charcode: - dependency: transitive - description: - name: charcode - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0-nullsafety.3" - checked_yaml: - dependency: transitive - description: - name: checked_yaml - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.4" - cli_util: - dependency: transitive - description: - name: cli_util - url: "https://pub.dartlang.org" - source: hosted - version: "0.2.0" - clipboard: - dependency: "direct main" - description: - name: clipboard - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.2+8" - clock: - dependency: transitive - description: - name: clock - url: "https://pub.dartlang.org" - source: hosted - version: "1.1.0-nullsafety.3" - code_builder: - dependency: transitive - description: - name: code_builder - url: "https://pub.dartlang.org" - source: hosted - version: "3.6.0" - collection: - dependency: transitive - description: - name: collection - url: "https://pub.dartlang.org" - source: hosted - version: "1.15.0-nullsafety.5" - connectivity: - dependency: "direct main" - description: - name: connectivity - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.2" - connectivity_for_web: - dependency: transitive - description: - name: connectivity_for_web - url: "https://pub.dartlang.org" - source: hosted - version: "0.3.1+4" - connectivity_macos: - dependency: transitive - description: - name: connectivity_macos - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.0+7" - connectivity_platform_interface: - dependency: transitive - description: - name: connectivity_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.6" - convert: - dependency: transitive - description: - name: convert - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.1" - crypto: - dependency: transitive - description: - name: crypto - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.5" - cupertino_icons: - dependency: "direct main" - description: - name: cupertino_icons - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.2" - dart_style: - dependency: transitive - description: - name: dart_style - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.11" - device_info: - dependency: transitive - description: - name: device_info - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.0" - device_info_platform_interface: - dependency: transitive - description: - name: device_info_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.1" - dio: - dependency: "direct main" - description: - name: dio - url: "https://pub.dartlang.org" - source: hosted - version: "3.0.10" - equatable: - dependency: "direct main" - description: - name: equatable - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.5" - fake_async: - dependency: transitive - description: - name: fake_async - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0-nullsafety.3" - ffi: - dependency: transitive - description: - name: ffi - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.3" - file: - dependency: transitive - description: - name: file - url: "https://pub.dartlang.org" - source: hosted - version: "5.2.1" - firebase_core: - dependency: transitive - description: - name: firebase_core - url: "https://pub.dartlang.org" - source: hosted - version: "0.5.3" - firebase_core_platform_interface: - dependency: transitive - description: - name: firebase_core_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.0" - firebase_core_web: - dependency: transitive - description: - name: firebase_core_web - url: "https://pub.dartlang.org" - source: hosted - version: "0.2.1+1" - firebase_messaging: - dependency: "direct main" - description: - name: firebase_messaging - url: "https://pub.dartlang.org" - source: hosted - version: "7.0.3" - fixnum: - dependency: transitive - description: - name: fixnum - url: "https://pub.dartlang.org" - source: hosted - version: "0.10.11" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_bloc: - dependency: "direct main" - description: - name: flutter_bloc - url: "https://pub.dartlang.org" - source: hosted - version: "6.1.1" - flutter_emoji_keyboard: - dependency: "direct main" - description: - path: "." - ref: HEAD - resolved-ref: cbc46b5d09cd53446a3cf1ae957396d3ac8cd943 - url: "https://github.com/bobs4462/emoji_keyboard.git" - source: git - version: "0.1.3" - flutter_inappwebview: - dependency: "direct main" - description: - name: flutter_inappwebview - url: "https://pub.dartlang.org" - source: hosted - version: "4.0.0+4" - flutter_launcher_icons: - dependency: "direct dev" - description: - name: flutter_launcher_icons - url: "https://pub.dartlang.org" - source: hosted - version: "0.8.1" - flutter_markdown: - dependency: "direct main" - description: - path: "." - ref: HEAD - resolved-ref: "47550df62401b9be06061808221752b1d3e8cad1" - url: "https://github.com/bobs4462/flutter_markdown.git" - source: git - version: "0.5.2" - flutter_plugin_android_lifecycle: - dependency: transitive - description: - name: flutter_plugin_android_lifecycle - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.11" - flutter_test: - dependency: "direct dev" - description: flutter - source: sdk - version: "0.0.0" - flutter_web_plugins: - dependency: transitive - description: flutter - source: sdk - version: "0.0.0" - glob: - dependency: transitive - description: - name: glob - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - graphs: - dependency: transitive - description: - name: graphs - url: "https://pub.dartlang.org" - source: hosted - version: "0.2.0" - http: - dependency: transitive - description: - name: http - url: "https://pub.dartlang.org" - source: hosted - version: "0.12.2" - http_multi_server: - dependency: transitive - description: - name: http_multi_server - url: "https://pub.dartlang.org" - source: hosted - version: "2.2.0" - http_parser: - dependency: transitive - description: - name: http_parser - url: "https://pub.dartlang.org" - source: hosted - version: "3.1.4" - image: - dependency: transitive - description: - name: image - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.19" - image_picker: - dependency: "direct main" - description: - name: image_picker - url: "https://pub.dartlang.org" - source: hosted - version: "0.6.7+21" - image_picker_platform_interface: - dependency: transitive - description: - name: image_picker_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "1.1.1" - intl: - dependency: "direct main" - description: - name: intl - url: "https://pub.dartlang.org" - source: hosted - version: "0.16.1" - io: - dependency: transitive - description: - name: io - url: "https://pub.dartlang.org" - source: hosted - version: "0.3.4" - js: - dependency: transitive - description: - name: js - url: "https://pub.dartlang.org" - source: hosted - version: "0.6.3-nullsafety.3" - json_annotation: - dependency: "direct main" - description: - name: json_annotation - url: "https://pub.dartlang.org" - source: hosted - version: "3.1.1" - json_serializable: - dependency: "direct dev" - description: - name: json_serializable - url: "https://pub.dartlang.org" - source: hosted - version: "3.5.1" - logger: - dependency: "direct main" - description: - name: logger - url: "https://pub.dartlang.org" - source: hosted - version: "0.9.4" - logging: - dependency: transitive - description: - name: logging - url: "https://pub.dartlang.org" - source: hosted - version: "0.11.4" - lottie: - dependency: "direct main" - description: - name: lottie - url: "https://pub.dartlang.org" - source: hosted - version: "0.7.0+1" - markdown: - dependency: transitive - description: - name: markdown - url: "https://pub.dartlang.org" - source: hosted - version: "3.0.0" - matcher: - dependency: transitive - description: - name: matcher - url: "https://pub.dartlang.org" - source: hosted - version: "0.12.10-nullsafety.3" - meta: - dependency: transitive - description: - name: meta - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.0-nullsafety.6" - mime: - dependency: transitive - description: - name: mime - url: "https://pub.dartlang.org" - source: hosted - version: "0.9.7" - nested: - dependency: transitive - description: - name: nested - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.4" - node_interop: - dependency: transitive - description: - name: node_interop - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.1" - node_io: - dependency: transitive - description: - name: node_io - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - package_config: - dependency: transitive - description: - name: package_config - url: "https://pub.dartlang.org" - source: hosted - version: "1.9.3" - package_info: - dependency: "direct main" - description: - name: package_info - url: "https://pub.dartlang.org" - source: hosted - version: "0.4.3+2" - path: - dependency: transitive - description: - name: path - url: "https://pub.dartlang.org" - source: hosted - version: "1.8.0-nullsafety.3" - path_provider: - dependency: "direct main" - description: - name: path_provider - url: "https://pub.dartlang.org" - source: hosted - version: "1.6.27" - path_provider_linux: - dependency: transitive - description: - name: path_provider_linux - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.1+2" - path_provider_macos: - dependency: transitive - description: - name: path_provider_macos - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.4+8" - path_provider_platform_interface: - dependency: transitive - description: - name: path_provider_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.4" - path_provider_windows: - dependency: transitive - description: - name: path_provider_windows - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.4+3" - pedantic: - dependency: transitive - description: - name: pedantic - url: "https://pub.dartlang.org" - source: hosted - version: "1.9.2" - petitparser: - dependency: transitive - description: - name: petitparser - url: "https://pub.dartlang.org" - source: hosted - version: "3.1.0" - platform: - dependency: transitive - description: - name: platform - url: "https://pub.dartlang.org" - source: hosted - version: "2.2.1" - plugin_platform_interface: - dependency: transitive - description: - name: plugin_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.3" - pool: - dependency: transitive - description: - name: pool - url: "https://pub.dartlang.org" - source: hosted - version: "1.4.0" - process: - dependency: transitive - description: - name: process - url: "https://pub.dartlang.org" - source: hosted - version: "3.0.13" - provider: - dependency: transitive - description: - name: provider - url: "https://pub.dartlang.org" - source: hosted - version: "4.3.3" - pub_semver: - dependency: transitive - description: - name: pub_semver - url: "https://pub.dartlang.org" - source: hosted - version: "1.4.4" - pubspec_parse: - dependency: transitive - description: - name: pubspec_parse - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.7" - quiver: - dependency: transitive - description: - name: quiver - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.5" - scrollable_positioned_list: - dependency: "direct main" - description: - name: scrollable_positioned_list - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.9" - sembast: - dependency: "direct main" - description: - name: sembast - url: "https://pub.dartlang.org" - source: hosted - version: "2.4.8+1" - shelf: - dependency: transitive - description: - name: shelf - url: "https://pub.dartlang.org" - source: hosted - version: "0.7.9" - shelf_web_socket: - dependency: transitive - description: - name: shelf_web_socket - url: "https://pub.dartlang.org" - source: hosted - version: "0.2.3" - sky_engine: - dependency: transitive - description: flutter - source: sdk - version: "0.0.99" - sliding_up_panel: - dependency: "direct main" - description: - name: sliding_up_panel - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.2" - source_gen: - dependency: transitive - description: - name: source_gen - url: "https://pub.dartlang.org" - source: hosted - version: "0.9.10+1" - source_span: - dependency: transitive - description: - name: source_span - url: "https://pub.dartlang.org" - source: hosted - version: "1.8.0-nullsafety.4" - sqflite: - dependency: "direct main" - description: - name: sqflite - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.2+2" - sqflite_common: - dependency: transitive - description: - name: sqflite_common - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.3+1" - stack_trace: - dependency: transitive - description: - name: stack_trace - url: "https://pub.dartlang.org" - source: hosted - version: "1.10.0-nullsafety.6" - sticky_grouped_list: - dependency: "direct main" - description: - name: sticky_grouped_list - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.0" - stream_channel: - dependency: transitive - description: - name: stream_channel - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.0-nullsafety.3" - stream_transform: - dependency: transitive - description: - name: stream_transform - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - string_scanner: - dependency: transitive - description: - name: string_scanner - url: "https://pub.dartlang.org" - source: hosted - version: "1.1.0-nullsafety.3" - synchronized: - dependency: transitive - description: - name: synchronized - url: "https://pub.dartlang.org" - source: hosted - version: "2.2.0+2" - term_glyph: - dependency: transitive - description: - name: term_glyph - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0-nullsafety.3" - test_api: - dependency: transitive - description: - name: test_api - url: "https://pub.dartlang.org" - source: hosted - version: "0.2.19-nullsafety.6" - timing: - dependency: transitive - description: - name: timing - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.1+3" - tuple: - dependency: "direct main" - description: - name: tuple - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.3" - typed_data: - dependency: transitive - description: - name: typed_data - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.0-nullsafety.5" - url_launcher: - dependency: "direct main" - description: - name: url_launcher - url: "https://pub.dartlang.org" - source: hosted - version: "5.7.10" - url_launcher_linux: - dependency: transitive - description: - name: url_launcher_linux - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.1+4" - url_launcher_macos: - dependency: transitive - description: - name: url_launcher_macos - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.1+9" - url_launcher_platform_interface: - dependency: transitive - description: - name: url_launcher_platform_interface - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.9" - url_launcher_web: - dependency: transitive - description: - name: url_launcher_web - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.5+1" - url_launcher_windows: - dependency: transitive - description: - name: url_launcher_windows - url: "https://pub.dartlang.org" - source: hosted - version: "0.0.1+3" - uuid: - dependency: transitive - description: - name: uuid - url: "https://pub.dartlang.org" - source: hosted - version: "2.2.2" - vector_math: - dependency: transitive - description: - name: vector_math - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.0-nullsafety.5" - watcher: - dependency: transitive - description: - name: watcher - url: "https://pub.dartlang.org" - source: hosted - version: "0.9.7+15" - web_socket_channel: - dependency: transitive - description: - name: web_socket_channel - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - webview_flutter: - dependency: "direct main" - description: - name: webview_flutter - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.7" - win32: - dependency: transitive - description: - name: win32 - url: "https://pub.dartlang.org" - source: hosted - version: "1.7.4" - xdg_directories: - dependency: transitive - description: - name: xdg_directories - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.2" - xml: - dependency: transitive - description: - name: xml - url: "https://pub.dartlang.org" - source: hosted - version: "4.5.1" - yaml: - dependency: transitive - description: - name: yaml - url: "https://pub.dartlang.org" - source: hosted - version: "2.2.1" -sdks: - dart: ">=2.12.0-0.0 <3.0.0" - flutter: ">=1.22.2" From 0ecf7b7861170ca370de3a4fb370b6dcfbf36598 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Wed, 27 Jan 2021 18:21:41 +0300 Subject: [PATCH 09/25] Added support for registration and password reset from auth page --- lib/blocs/auth_bloc.dart | 4 ++ lib/config/styles_config.dart | 6 +++ lib/events/auth_event.dart | 10 +++++ lib/pages/initial_page.dart | 7 ++++ lib/pages/web_auth_page.dart | 69 +++++++++++++++------------------ lib/states/auth_state.dart | 16 ++++++++ lib/widgets/auth/auth_form.dart | 41 +++++++++++++++----- 7 files changed, 105 insertions(+), 48 deletions(-) diff --git a/lib/blocs/auth_bloc.dart b/lib/blocs/auth_bloc.dart index 31bdc6a6..f2a781e6 100644 --- a/lib/blocs/auth_bloc.dart +++ b/lib/blocs/auth_bloc.dart @@ -130,6 +130,10 @@ class AuthBloc extends Bloc { } yield Unauthenticated(message: event.message); runWebView(); + } else if (event is RegistrationInit) { + yield Registration('https://console.twake.app/signup'); + } else if (event is ResetPassword) { + yield PasswordReset('https://console.twake.app/password-recovery'); } } diff --git a/lib/config/styles_config.dart b/lib/config/styles_config.dart index c5a3e4e8..19d77060 100644 --- a/lib/config/styles_config.dart +++ b/lib/config/styles_config.dart @@ -107,5 +107,11 @@ class StylesConfig { fontSize: 12.0, fontWeight: FontWeight.w400, ); + + static final disabled = TextStyle( + color: Color(0xff696969), + fontSize: 12.0, + fontWeight: FontWeight.w400, + ); //TextStyle(color: accentColorRGB, fontSize: Dim.tm2(decimal: .15)); } diff --git a/lib/events/auth_event.dart b/lib/events/auth_event.dart index 8c6896cd..48f472bb 100644 --- a/lib/events/auth_event.dart +++ b/lib/events/auth_event.dart @@ -41,6 +41,16 @@ class ResetAuthentication extends AuthEvent { List get props => [message]; } +class ResetPassword extends AuthEvent { + @override + List get props => []; +} + +class RegistrationInit extends AuthEvent { + @override + List get props => []; +} + class AuthInitialize extends AuthEvent { @override List get props => []; diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index edd1531c..f8a4bfb0 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -74,6 +74,13 @@ class _InitialPageState extends State with WidgetsBindingObserver { return AuthPage(); // return WebAuthPage(); } + if (state is Registration) { + return WebAuthPage(state.link); + } + if (state is PasswordReset) { + return WebAuthPage(state.link); + } + if (state is Authenticated) { return MultiBlocProvider( providers: [ diff --git a/lib/pages/web_auth_page.dart b/lib/pages/web_auth_page.dart index 91c4b72e..946da550 100644 --- a/lib/pages/web_auth_page.dart +++ b/lib/pages/web_auth_page.dart @@ -7,7 +7,9 @@ import 'package:twake/blocs/auth_bloc.dart'; import 'package:webview_flutter/webview_flutter.dart'; class WebAuthPage extends StatefulWidget { - WebAuthPage() { + final String initLink; + + WebAuthPage(this.initLink) { if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView(); CookieManager().clearCookies(); } @@ -18,47 +20,38 @@ class WebAuthPage extends StatefulWidget { class _WebAuthPageState extends State { WebViewController webViewController; - final twakeConsole = - 'https://beta.twake.app/ajax/users/console/openid?mobile=1'; - bool hasMessage = false; + // final twakeConsole = + // 'https://beta.twake.app/ajax/users/console/openid?mobile=1'; @override Widget build(BuildContext context) { - return Scaffold( - body: SafeArea( - child: WebView( - initialMediaPlaybackPolicy: AutoMediaPlaybackPolicy.always_allow, - onWebViewCreated: (ctrl) => webViewController = ctrl, - navigationDelegate: (r) async { - // Logger().d('URL IS: ' + r.url); - if (r.url.contains('redirect_to_app')) { - final qp = Uri.parse(r.url).queryParameters; + return WillPopScope( + onWillPop: () async { + context.read().add(ResetAuthentication()); + return false; + }, + child: Scaffold( + body: SafeArea( + child: WebView( + initialMediaPlaybackPolicy: AutoMediaPlaybackPolicy.always_allow, + onWebViewCreated: (ctrl) => webViewController = ctrl, + navigationDelegate: (r) async { + // Logger().d('URL IS: ' + r.url); + // if (r.url.contains('redirect_to_app')) { + // final qp = Uri.parse(r.url).queryParameters; // Logger().d('PARAMS: $qp'); - if (qp['token'] == null || qp['username'] == null) - webViewController.loadUrl(twakeConsole); - BlocProvider.of(context).add( - SetAuthData(qp), - ); - await CookieManager().clearCookies(); - } - return NavigationDecision.navigate; - }, - javascriptMode: JavascriptMode.unrestricted, - initialUrl: twakeConsole, - // javascriptChannels: Set.from([ - // JavascriptChannel( - // name: 'AuthData', - // onMessageReceived: (jsmsg) async { - // await CookieManager().clearCookies(); - // if (hasMessage) return; - // hasMessage = true; - // BlocProvider.of(context).add( - // SetAuthData(jsonDecode(jsmsg.message)), - // ); - // Logger().d('GOT DATA FROM WEBVIEW: ' + jsmsg.message); - // webViewController.clearCache(); - // }), - // ]), + // if (qp['token'] == null || qp['username'] == null) + // webViewController.loadUrl(widget.initLink); + // BlocProvider.of(context).add( + // SetAuthData(qp), + // ); + // await CookieManager().clearCookies(); + // } + return NavigationDecision.navigate; + }, + javascriptMode: JavascriptMode.unrestricted, + initialUrl: widget.initLink, + ), ), ), ); diff --git a/lib/states/auth_state.dart b/lib/states/auth_state.dart index 03d60e3a..80c20530 100644 --- a/lib/states/auth_state.dart +++ b/lib/states/auth_state.dart @@ -37,6 +37,22 @@ class Authenticated extends AuthState { List get props => []; } +class Registration extends AuthState { + final String link; + const Registration(this.link); + + @override + List get props => [link]; +} + +class PasswordReset extends AuthState { + final String link; + const PasswordReset(this.link); + + @override + List get props => [link]; +} + class AuthenticationError extends AuthState { const AuthenticationError(); @override diff --git a/lib/widgets/auth/auth_form.dart b/lib/widgets/auth/auth_form.dart index f67622be..01f1be17 100644 --- a/lib/widgets/auth/auth_form.dart +++ b/lib/widgets/auth/auth_form.dart @@ -135,11 +135,22 @@ class _AuthFormState extends State { Expanded( child: Align( alignment: Alignment.centerRight, - child: FlatButton( - onPressed: () {}, - child: Text( - 'Forgot password?', - style: StylesConfig.miniPurple, + child: + BlocBuilder( + builder: (context, state) => FlatButton( + onPressed: state is cb.ConnectionLost + ? null + : () { + context + .read() + .add(ResetPassword()); + }, + child: Text( + 'Forgot password?', + style: state is cb.ConnectionLost + ? StylesConfig.disabled + : StylesConfig.miniPurple, + ), ), ), ), @@ -185,11 +196,21 @@ class _AuthFormState extends State { style: StylesConfig.miniPurple .copyWith(color: Colors.black87), ), - FlatButton( - onPressed: () {}, - child: Text( - ' Sign up', - style: StylesConfig.miniPurple, + BlocBuilder( + builder: (context, state) => FlatButton( + onPressed: state is cb.ConnectionLost + ? null + : () { + context + .read() + .add(RegistrationInit()); + }, + child: Text( + ' Sign up', + style: state is cb.ConnectionLost + ? StylesConfig.disabled + : StylesConfig.miniPurple, + ), ), ), ], From e341d8885d8f7c1aa6163755abbca4f8fc0e2918 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 19:36:38 +0300 Subject: [PATCH 10/25] Working on network status bar. --- assets/images/2.0x/clock.png | Bin 0 -> 562 bytes assets/images/3.0x/clock.png | Bin 0 -> 797 bytes assets/images/clock.png | Bin 0 -> 318 bytes integration_test/app_test.dart | 72 +++---- integration_test/driver.dart | 14 +- ios/Podfile.lock | 4 +- lib/pages/initial_page.dart | 229 ++++++++++++--------- lib/pages/main_page.dart | 11 +- lib/widgets/bars/main_app_bar.dart | 61 +++--- lib/widgets/common/network_status_bar.dart | 32 +++ pubspec.lock | 44 ++-- 11 files changed, 264 insertions(+), 203 deletions(-) create mode 100644 assets/images/2.0x/clock.png create mode 100644 assets/images/3.0x/clock.png create mode 100644 assets/images/clock.png create mode 100644 lib/widgets/common/network_status_bar.dart diff --git a/assets/images/2.0x/clock.png b/assets/images/2.0x/clock.png new file mode 100644 index 0000000000000000000000000000000000000000..784e68d0c7913ee53473fb71276c8f396d02a07a GIT binary patch literal 562 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|#^NA%Cx&(BWL^R}E~ycoX}-P; zT0k}j17mw80}DtA5K93u0|WB{Mh0de%?J`(zyy~STEL88gA~qMxhWK=Y>uakV~B;| z)XDzZE{P)T>n@loXlq=GJiR&w5Qqb`UP&mnVu3Ut%cPordBVLt2o%K z+s!zhh#$Uh=n-Qq;g)_m$jht-K|B+{#g4~&VL1J1O^Fue^ymaMYQ~Phm!=iq_d+u5)qIxHdD>GlBIV0 z!c`t|4)6Q;wl(iJ literal 0 HcmV?d00001 diff --git a/assets/images/3.0x/clock.png b/assets/images/3.0x/clock.png new file mode 100644 index 0000000000000000000000000000000000000000..433255c5d21e10c3327cc50747f7d0dbbc4dcfca GIT binary patch literal 797 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0dw>{L~p^}q!UG#_WzqifrH_U9*e&|qeIXpu2Nc{heZp;6ATX0q%iZ7LX zreL+7arwfV>l%_+^4irO6wmlxll1PQ`68JYa@VZhv?lWK9X2;;`sa{$(5s>(@kIsO zs}zA5Ka(Zu?kVSMT3^tpS7yGNsN1#Ipl@@|_O{ka3C8EA*ur8pYr^=5qgD>r4nxbx3m4LrHkh`wePr78x%Hk`9@h@t zpD&N>JmPeReRkGKI~4}EM1uqAGM*{yp;c~anXUtk&SzpkM$d_?u(x< zD!(t_#$NV=kv+Pzl9&3H&ul;69ceyU#7@}knd63CDK=+qm?EFf-gNIxP2%AL(^9_2 zaedqHQko}zbEuzM~aPrO;1-pmvv4FO#pvzP(T0x literal 0 HcmV?d00001 diff --git a/assets/images/clock.png b/assets/images/clock.png new file mode 100644 index 0000000000000000000000000000000000000000..f976a5b4bff09b304f90d0b9fd47e3a62e71fcb4 GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{VjKx9jP7LeL$-D$|Tv8)E(|mmy zw18|52FCVG1{RPKAeI7R1_tH@j10^`nh_+nfC(VW@$?kz>j(!5m?hu2KhuD;Tw_cgq~`Uc%L+shg}E(J64`kjx?JC-sll zJvcCZrf=KHzT*256Tj_v+$_CK;(!xx_>>3*r#9oh4HsBUTQq7GYKrHST+=sEbP?t% z>Z>}T?AR`l+_lnv&&guby&JyhPc5@hY`bTl82w_>e%}?rJ|7NneG3F~b{*!)Uh%MD i{{=DAsE`euDc6}bcSt#(s+qtIa=WLipUXO@geCx1WnYK@ literal 0 HcmV?d00001 diff --git a/integration_test/app_test.dart b/integration_test/app_test.dart index c86bdfda..551fca30 100644 --- a/integration_test/app_test.dart +++ b/integration_test/app_test.dart @@ -1,36 +1,36 @@ -// This is a basic Flutter integration test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility that Flutter provides. For example, you can send tap and scroll -// gestures. You can also use WidgetTester to find child widgets in the widget -// tree, read text, and verify that the values of widget properties are correct. - -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; -import 'package:integration_test/integration_test.dart'; - -import 'package:twake_mobile/main.dart' as app; - -void main() => run(_testMain); - -void _testMain() { - testWidgets('Counter increments smoke test', (WidgetTester tester) async { - // Build our app and trigger a frame. - app.main(); - - // Trigger a frame. - await tester.pumpAndSettle(); - - // Verify that our counter starts at 0. - expect(find.text('0'), findsOneWidget); - expect(find.text('1'), findsNothing); - - // Tap the '+' icon and trigger a frame. - await tester.tap(find.byIcon(Icons.add)); - await tester.pump(); - - // Verify that our counter has incremented. - expect(find.text('0'), findsNothing); - expect(find.text('1'), findsOneWidget); - }); -} +// // This is a basic Flutter integration test. +// // +// // To perform an interaction with a widget in your test, use the WidgetTester +// // utility that Flutter provides. For example, you can send tap and scroll +// // gestures. You can also use WidgetTester to find child widgets in the widget +// // tree, read text, and verify that the values of widget properties are correct. +// +// import 'package:flutter/material.dart'; +// import 'package:flutter_test/flutter_test.dart'; +// import 'package:integration_test/integration_test.dart'; +// +// import 'package:twake_mobile/main.dart' as app; +// +// void main() => run(_testMain); +// +// void _testMain() { +// testWidgets('Counter increments smoke test', (WidgetTester tester) async { +// // Build our app and trigger a frame. +// app.main(); +// +// // Trigger a frame. +// await tester.pumpAndSettle(); +// +// // Verify that our counter starts at 0. +// expect(find.text('0'), findsOneWidget); +// expect(find.text('1'), findsNothing); +// +// // Tap the '+' icon and trigger a frame. +// await tester.tap(find.byIcon(Icons.add)); +// await tester.pump(); +// +// // Verify that our counter has incremented. +// expect(find.text('0'), findsNothing); +// expect(find.text('1'), findsOneWidget); +// }); +// } diff --git a/integration_test/driver.dart b/integration_test/driver.dart index a03bca08..0dda9f96 100644 --- a/integration_test/driver.dart +++ b/integration_test/driver.dart @@ -1,8 +1,8 @@ -// This file is provided as a convenience for running integration tests via the -// flutter drive command. +// // This file is provided as a convenience for running integration tests via the +// // flutter drive command. +// // +// // flutter drive --driver integration_test/driver.dart --target integration_test/app_test.dart // -// flutter drive --driver integration_test/driver.dart --target integration_test/app_test.dart - -import 'package:integration_test/integration_test_driver.dart'; - -Future main() => integrationDriver(); +// import 'package:integration_test/integration_test_driver.dart'; +// +// Future main() => integrationDriver(); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 6f6a8aad..526421b7 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -158,7 +158,7 @@ SPEC CHECKSUMS: FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 FirebaseInstanceID: bd3ffc24367f901a43c063b36c640b345a4a5dd1 FirebaseMessaging: 5eca4ef173de76253352511aafef774caa1cba2a - Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c + Flutter: 0e3d915762c693b495b44d77113d4970485de6ec flutter_inappwebview: 69dfbac46157b336ffbec19ca6dfd4638c7bf189 FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 @@ -176,4 +176,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.0 +COCOAPODS: 1.9.1 diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index edd1531c..7b8fc3ae 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -18,6 +18,8 @@ import 'package:twake/config/dimensions_config.dart'; import 'package:twake/pages/auth_page.dart'; import 'package:twake/pages/routes.dart'; import 'package:twake/pages/web_auth_page.dart'; +import 'package:twake/widgets/common/network_status_bar.dart'; +import 'package:twake/blocs/connection_bloc.dart' as cb; // import 'package:twake/pages/web_auth_page.dart'; class InitialPage extends StatefulWidget { @@ -27,6 +29,7 @@ class InitialPage extends StatefulWidget { class _InitialPageState extends State with WidgetsBindingObserver { final _navigatorKey = GlobalKey(); + @override void initState() { super.initState(); @@ -65,115 +68,135 @@ class _InitialPageState extends State with WidgetsBindingObserver { @override Widget build(BuildContext context) { - return BlocBuilder( - builder: (ctx, state) { - if (state is AuthInitializing) { - return buildSplashScreen(); - } - if (state is Unauthenticated) { - return AuthPage(); - // return WebAuthPage(); - } - if (state is Authenticated) { - return MultiBlocProvider( - providers: [ - BlocProvider( - create: (_) => ProfileBloc(state.initData.profile), - lazy: false, - ), - BlocProvider(create: (_) => NotificationBloc()), - BlocProvider( - create: (ctx) => CompaniesBloc(state.initData.companies), - ), - BlocProvider(create: (ctx) { - return WorkspacesBloc( - repository: state.initData.workspaces, - companiesBloc: BlocProvider.of(ctx), - ); - }), - BlocProvider(create: (ctx) { - return ChannelsBloc( - repository: state.initData.channels, - workspacesBloc: BlocProvider.of(ctx), - notificationBloc: BlocProvider.of(ctx), - ); - }), - BlocProvider(create: (ctx) { - return DirectsBloc( - repository: state.initData.directs, - companiesBloc: BlocProvider.of(ctx), - notificationBloc: BlocProvider.of(ctx), - ); - }), - BlocProvider>( - create: (ctx) { - return MessagesBloc( - repository: state.initData.messages, - channelsBloc: BlocProvider.of(ctx), - notificationBloc: BlocProvider.of(ctx), + return Scaffold( + body: BlocBuilder( + builder: (ctx, state) { + if (state is AuthInitializing) { + return buildSplashScreen(); + } + if (state is Unauthenticated) { + return AuthPage(); + // return WebAuthPage(); + } + if (state is Authenticated) { + return MultiBlocProvider( + providers: [ + BlocProvider( + create: (_) => ProfileBloc(state.initData.profile), + lazy: false, + ), + BlocProvider(create: (_) => NotificationBloc()), + BlocProvider( + create: (ctx) => CompaniesBloc(state.initData.companies), + ), + BlocProvider(create: (ctx) { + return WorkspacesBloc( + repository: state.initData.workspaces, + companiesBloc: BlocProvider.of(ctx), ); - }, - lazy: false, - ), - BlocProvider>( - create: (ctx) { - return MessagesBloc( - repository: state.initData.messages, - channelsBloc: BlocProvider.of(ctx), + }), + BlocProvider(create: (ctx) { + return ChannelsBloc( + repository: state.initData.channels, + workspacesBloc: BlocProvider.of(ctx), notificationBloc: BlocProvider.of(ctx), ); - }, - lazy: false, - ), - BlocProvider>( - create: (ctx) { - return ThreadsBloc( - repository: state.initData.threads, - messagesBloc: - BlocProvider.of>(ctx), + }), + BlocProvider(create: (ctx) { + return DirectsBloc( + repository: state.initData.directs, + companiesBloc: BlocProvider.of(ctx), notificationBloc: BlocProvider.of(ctx), ); - }, - lazy: false, + }), + BlocProvider>( + create: (ctx) { + return MessagesBloc( + repository: state.initData.messages, + channelsBloc: BlocProvider.of(ctx), + notificationBloc: BlocProvider.of(ctx), + ); + }, + lazy: false, + ), + BlocProvider>( + create: (ctx) { + return MessagesBloc( + repository: state.initData.messages, + channelsBloc: BlocProvider.of(ctx), + notificationBloc: BlocProvider.of(ctx), + ); + }, + lazy: false, + ), + BlocProvider>( + create: (ctx) { + return ThreadsBloc( + repository: state.initData.threads, + messagesBloc: + BlocProvider.of>(ctx), + notificationBloc: BlocProvider.of(ctx), + ); + }, + lazy: false, + ), + BlocProvider>( + create: (ctx) { + return ThreadsBloc( + repository: state.initData.threads, + messagesBloc: + BlocProvider.of>(ctx), + notificationBloc: BlocProvider.of(ctx), + ); + }, + lazy: false, + ), + BlocProvider( + create: (_) => SheetBloc(state.initData.sheet), + lazy: false, + ), + BlocProvider( + create: (_) => AddChannelBloc(state.initData.addChannel), + lazy: false, + ), + BlocProvider( + create: (_) => DraftBloc(state.initData.draft), + lazy: false, + ), + ], + child: WillPopScope( + onWillPop: () async => + !await _navigatorKey.currentState.maybePop(), + child: Stack( + children: [ + Navigator( + key: _navigatorKey, + initialRoute: Routes.main, + onGenerateRoute: (settings) => + Routes.onGenerateRoute(settings.name), + ), + BlocBuilder( + builder: (context, state) { + print('Connection state: $state'); + if (state is cb.ConnectionLost) { + return Positioned( + top: Dim.heightPercent((kToolbarHeight * 0.15).round()) + + MediaQuery.of(context).padding.top, + child: NetworkStatusBar(), + ); + } else { + return const SizedBox(); + } + } + ), + ], + ), ), - BlocProvider>( - create: (ctx) { - return ThreadsBloc( - repository: state.initData.threads, - messagesBloc: - BlocProvider.of>(ctx), - notificationBloc: BlocProvider.of(ctx), - ); - }, - lazy: false, - ), - BlocProvider( - create: (_) => SheetBloc(state.initData.sheet), - lazy: false, - ), - BlocProvider( - create: (_) => AddChannelBloc(state.initData.addChannel), - lazy: false, - ), - BlocProvider( - create: (_) => DraftBloc(state.initData.draft), - lazy: false, - ), - ], - child: WillPopScope( - onWillPop: () async => - !await _navigatorKey.currentState.maybePop(), - child: Navigator( - key: _navigatorKey, - initialRoute: Routes.main, - onGenerateRoute: (settings) => - Routes.onGenerateRoute(settings.name), - ), - ), - ); - } else // is Authenticating - return buildSplashScreen(); - }, + ); + } else // is Authenticating + return buildSplashScreen(); + }, + ), ); } } diff --git a/lib/pages/main_page.dart b/lib/pages/main_page.dart index 1c0cdaea..e9707de0 100644 --- a/lib/pages/main_page.dart +++ b/lib/pages/main_page.dart @@ -17,6 +17,7 @@ import 'package:twake/widgets/sheets/draggable_scrollable.dart'; class MainPage extends StatefulWidget { const MainPage(); + @override _MainPageState createState() => _MainPageState(); } @@ -60,9 +61,15 @@ class _MainPageState extends State { }), body: SafeArea( child: Column( + mainAxisSize: MainAxisSize.min, children: [ - MainAppBar( - scaffoldKey: _scaffoldKey, + SizedBox( + height: Dim.heightPercent( + (kToolbarHeight * 0.15).round(), + ), + child: MainAppBar( + scaffoldKey: _scaffoldKey, + ), ), Expanded( child: BlocBuilder( diff --git a/lib/widgets/bars/main_app_bar.dart b/lib/widgets/bars/main_app_bar.dart index 91226c63..ce188842 100644 --- a/lib/widgets/bars/main_app_bar.dart +++ b/lib/widgets/bars/main_app_bar.dart @@ -22,37 +22,36 @@ class MainAppBar extends StatelessWidget implements PreferredSizeWidget { (kToolbarHeight * 0.15).round(), ), // taking into account current appBar height to calculate a new one - title: Column( - children: [ - BlocBuilder(builder: (ctx, state) { - if (state is WorkspacesLoaded) - return ListTile( - contentPadding: EdgeInsets.zero, - leading: SizedBox( - width: 32, - height: 32, - child: ImageAvatar(state.selected.logo), - ), - title: Text( - state.selected.name, - style: TextStyle( - fontSize: 17.0, - fontWeight: FontWeight.w600, - color: Color(0xff444444), - ), - overflow: TextOverflow.ellipsis, - maxLines: 1, - ), - ); - else - return CircularProgressIndicator(); - }), - Divider( - thickness: 1.0, - height: 1.0, - color: Color(0xffEEEEEE), - ), - ], + title: BlocBuilder(builder: (ctx, state) { + if (state is WorkspacesLoaded) + return ListTile( + contentPadding: EdgeInsets.zero, + leading: SizedBox( + width: 32, + height: 32, + child: ImageAvatar(state.selected.logo), + ), + title: Text( + state.selected.name, + style: TextStyle( + fontSize: 17.0, + fontWeight: FontWeight.w600, + color: Color(0xff444444), + ), + overflow: TextOverflow.ellipsis, + maxLines: 1, + ), + ); + else + return CircularProgressIndicator(); + }), + bottom: PreferredSize( + preferredSize: Size.fromHeight(kToolbarHeight), + child: Divider( + thickness: 1.0, + height: 1.0, + color: Color(0xffEEEEEE), + ), ), ); } diff --git a/lib/widgets/common/network_status_bar.dart b/lib/widgets/common/network_status_bar.dart new file mode 100644 index 00000000..b81b0cce --- /dev/null +++ b/lib/widgets/common/network_status_bar.dart @@ -0,0 +1,32 @@ +import 'package:flutter/material.dart'; + +class NetworkStatusBar extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Container( + width: MediaQuery.of(context).size.width, + height: 33.0, + padding: EdgeInsets.symmetric(vertical: 10.0), + color: Color(0xffffcb63), + alignment: Alignment.center, + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Flexible( + child: Text( + 'waiting for internet', + textAlign: TextAlign.end, + style: TextStyle( + fontSize: 11.0, + fontWeight: FontWeight.w400, + color: Colors.black, + ), + ), + ), + SizedBox(width: 4), + Flexible(child: Image.asset("assets/images/clock.png")), + ], + ), + ); + } +} diff --git a/pubspec.lock b/pubspec.lock index 2b9c4d83..ca8aa739 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -35,7 +35,7 @@ packages: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.5.0-nullsafety.3" + version: "2.5.0-nullsafety.1" bloc: dependency: transitive description: @@ -49,7 +49,7 @@ packages: name: boolean_selector url: "https://pub.dartlang.org" source: hosted - version: "2.1.0-nullsafety.3" + version: "2.1.0-nullsafety.1" build: dependency: transitive description: @@ -112,14 +112,14 @@ packages: name: characters url: "https://pub.dartlang.org" source: hosted - version: "1.1.0-nullsafety.5" + version: "1.1.0-nullsafety.3" charcode: dependency: transitive description: name: charcode url: "https://pub.dartlang.org" source: hosted - version: "1.2.0-nullsafety.3" + version: "1.2.0-nullsafety.1" checked_yaml: dependency: transitive description: @@ -147,7 +147,7 @@ packages: name: clock url: "https://pub.dartlang.org" source: hosted - version: "1.1.0-nullsafety.3" + version: "1.1.0-nullsafety.1" code_builder: dependency: transitive description: @@ -161,7 +161,7 @@ packages: name: collection url: "https://pub.dartlang.org" source: hosted - version: "1.15.0-nullsafety.5" + version: "1.15.0-nullsafety.3" connectivity: dependency: "direct main" description: @@ -210,7 +210,7 @@ packages: name: cupertino_icons url: "https://pub.dartlang.org" source: hosted - version: "1.0.2" + version: "1.0.0" dart_style: dependency: transitive description: @@ -252,7 +252,7 @@ packages: name: fake_async url: "https://pub.dartlang.org" source: hosted - version: "1.2.0-nullsafety.3" + version: "1.2.0-nullsafety.1" ffi: dependency: transitive description: @@ -439,7 +439,7 @@ packages: name: js url: "https://pub.dartlang.org" source: hosted - version: "0.6.3-nullsafety.3" + version: "0.6.2" json_annotation: dependency: "direct main" description: @@ -488,14 +488,14 @@ packages: name: matcher url: "https://pub.dartlang.org" source: hosted - version: "0.12.10-nullsafety.3" + version: "0.12.10-nullsafety.1" meta: dependency: transitive description: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.3.0-nullsafety.6" + version: "1.3.0-nullsafety.3" mime: dependency: transitive description: @@ -544,7 +544,7 @@ packages: name: path url: "https://pub.dartlang.org" source: hosted - version: "1.8.0-nullsafety.3" + version: "1.8.0-nullsafety.1" path_provider: dependency: "direct main" description: @@ -703,7 +703,7 @@ packages: name: source_span url: "https://pub.dartlang.org" source: hosted - version: "1.8.0-nullsafety.4" + version: "1.8.0-nullsafety.2" sqflite: dependency: "direct main" description: @@ -724,7 +724,7 @@ packages: name: stack_trace url: "https://pub.dartlang.org" source: hosted - version: "1.10.0-nullsafety.6" + version: "1.10.0-nullsafety.1" sticky_grouped_list: dependency: "direct main" description: @@ -738,7 +738,7 @@ packages: name: stream_channel url: "https://pub.dartlang.org" source: hosted - version: "2.1.0-nullsafety.3" + version: "2.1.0-nullsafety.1" stream_transform: dependency: transitive description: @@ -752,7 +752,7 @@ packages: name: string_scanner url: "https://pub.dartlang.org" source: hosted - version: "1.1.0-nullsafety.3" + version: "1.1.0-nullsafety.1" synchronized: dependency: transitive description: @@ -766,14 +766,14 @@ packages: name: term_glyph url: "https://pub.dartlang.org" source: hosted - version: "1.2.0-nullsafety.3" + version: "1.2.0-nullsafety.1" test_api: dependency: transitive description: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.2.19-nullsafety.6" + version: "0.2.19-nullsafety.2" timing: dependency: transitive description: @@ -794,7 +794,7 @@ packages: name: typed_data url: "https://pub.dartlang.org" source: hosted - version: "1.3.0-nullsafety.5" + version: "1.3.0-nullsafety.3" url_launcher: dependency: "direct main" description: @@ -850,7 +850,7 @@ packages: name: vector_math url: "https://pub.dartlang.org" source: hosted - version: "2.1.0-nullsafety.5" + version: "2.1.0-nullsafety.3" watcher: dependency: transitive description: @@ -901,5 +901,5 @@ packages: source: hosted version: "2.2.1" sdks: - dart: ">=2.12.0-0.0 <3.0.0" - flutter: ">=1.22.2" + dart: ">=2.10.2 <2.11.0" + flutter: ">=1.22.2 <2.0.0" From 107627b3dcf5721cdf62360dedd979eaf61e8e2b Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 20:01:52 +0300 Subject: [PATCH 11/25] Got rid of ConnectionBloc listener on MainPage. --- lib/pages/main_page.dart | 163 +++++++++++++++++++-------------------- 1 file changed, 79 insertions(+), 84 deletions(-) diff --git a/lib/pages/main_page.dart b/lib/pages/main_page.dart index e9707de0..cc842b82 100644 --- a/lib/pages/main_page.dart +++ b/lib/pages/main_page.dart @@ -4,14 +4,12 @@ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:sliding_up_panel/sliding_up_panel.dart'; import 'package:twake/blocs/channels_bloc.dart'; -import 'package:twake/blocs/connection_bloc.dart' as cb; import 'package:twake/blocs/directs_bloc.dart'; import 'package:twake/blocs/sheet_bloc.dart'; import 'package:twake/config/dimensions_config.dart' show Dim; import 'package:twake/widgets/bars/main_app_bar.dart'; import 'package:twake/widgets/channel/channels_group.dart'; import 'package:twake/widgets/channel/direct_messages_group.dart'; -import 'package:twake/widgets/common/no_internet_snackbar.dart'; import 'package:twake/widgets/drawer/twake_drawer.dart'; import 'package:twake/widgets/sheets/draggable_scrollable.dart'; @@ -33,93 +31,90 @@ class _MainPageState extends State { drawer: TwakeDrawer(), backgroundColor: Colors.white, resizeToAvoidBottomInset: false, - body: BlocListener( - listener: connectionListener, - child: SlidingUpPanel( - controller: _panelController, - onPanelOpened: () => context.read().add(SetOpened()), - onPanelClosed: () => context.read().add(SetClosed()), - onPanelSlide: _onPanelSlide, - minHeight: 0, - maxHeight: MediaQuery.of(context).size.height * 0.9, - backdropEnabled: true, - renderPanelSheet: false, - panel: BlocBuilder( - buildWhen: (_, current) => - current is SheetShouldOpen || current is SheetShouldClose, - builder: (context, state) { - if (state is SheetShouldOpen) { - if (_panelController.isPanelClosed) { - _openSheet(); - } - } else if (state is SheetShouldClose) { - if (_panelController.isPanelOpen) { - _closeSheet(); - } + body: SlidingUpPanel( + controller: _panelController, + onPanelOpened: () => context.read().add(SetOpened()), + onPanelClosed: () => context.read().add(SetClosed()), + onPanelSlide: _onPanelSlide, + minHeight: 0, + maxHeight: MediaQuery.of(context).size.height * 0.9, + backdropEnabled: true, + renderPanelSheet: false, + panel: BlocBuilder( + buildWhen: (_, current) => + current is SheetShouldOpen || current is SheetShouldClose, + builder: (context, state) { + if (state is SheetShouldOpen) { + if (_panelController.isPanelClosed) { + _openSheet(); } - return DraggableScrollable(); - }), - body: SafeArea( - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - SizedBox( - height: Dim.heightPercent( - (kToolbarHeight * 0.15).round(), - ), - child: MainAppBar( - scaffoldKey: _scaffoldKey, - ), + } else if (state is SheetShouldClose) { + if (_panelController.isPanelOpen) { + _closeSheet(); + } + } + return DraggableScrollable(); + }), + body: SafeArea( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + SizedBox( + height: Dim.heightPercent( + (kToolbarHeight * 0.15).round(), + ), + child: MainAppBar( + scaffoldKey: _scaffoldKey, ), - Expanded( - child: BlocBuilder( - builder: (ctx, state) => - (state is ChannelsLoaded || state is ChannelsEmpty) - ? RefreshIndicator( - onRefresh: () { - BlocProvider.of(ctx) - .add(ReloadChannels(forceFromApi: true)); - BlocProvider.of(ctx) - .add(ReloadChannels(forceFromApi: true)); - return Future.delayed(Duration(seconds: 1)); - }, - child: GestureDetector( - onTap: () => _closeSheet(), - behavior: HitTestBehavior.translucent, - child: Padding( - padding: EdgeInsets.symmetric( - horizontal: 12.0, - ), - child: ListView( - padding: EdgeInsets.only(top: 0), - children: [ - // Starred channels will be implemented in version 2 - // StarredChannelsBlock([]), - // Divider(height: Dim.hm5), - ChannelsGroup(), - Divider( - thickness: 2.0, - height: 2.0, - color: Color(0xffEEEEEE), - ), - SizedBox(height: 8), - DirectMessagesGroup(), - Divider( - thickness: 2.0, - height: 2.0, - color: Color(0xffEEEEEE), - ), - SizedBox(height: Dim.hm2), - ], - ), + ), + Expanded( + child: BlocBuilder( + builder: (ctx, state) => + (state is ChannelsLoaded || state is ChannelsEmpty) + ? RefreshIndicator( + onRefresh: () { + BlocProvider.of(ctx) + .add(ReloadChannels(forceFromApi: true)); + BlocProvider.of(ctx) + .add(ReloadChannels(forceFromApi: true)); + return Future.delayed(Duration(seconds: 1)); + }, + child: GestureDetector( + onTap: () => _closeSheet(), + behavior: HitTestBehavior.translucent, + child: Padding( + padding: EdgeInsets.symmetric( + horizontal: 12.0, + ), + child: ListView( + padding: EdgeInsets.only(top: 0), + children: [ + // Starred channels will be implemented in version 2 + // StarredChannelsBlock([]), + // Divider(height: Dim.hm5), + ChannelsGroup(), + Divider( + thickness: 2.0, + height: 2.0, + color: Color(0xffEEEEEE), + ), + SizedBox(height: 8), + DirectMessagesGroup(), + Divider( + thickness: 2.0, + height: 2.0, + color: Color(0xffEEEEEE), + ), + SizedBox(height: Dim.hm2), + ], ), ), - ) - : Center(child: CircularProgressIndicator()), - ), + ), + ) + : Center(child: CircularProgressIndicator()), ), - ], - ), + ), + ], ), ), ), From a40750120e83f20882fbcaab8ea13f2ce1c53cc1 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 21:16:59 +0300 Subject: [PATCH 12/25] Animation added for network status bar appearance. --- lib/pages/initial_page.dart | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index 7b8fc3ae..fa2ca8f6 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -85,7 +85,8 @@ class _InitialPageState extends State with WidgetsBindingObserver { create: (_) => ProfileBloc(state.initData.profile), lazy: false, ), - BlocProvider(create: (_) => NotificationBloc()), + BlocProvider( + create: (_) => NotificationBloc()), BlocProvider( create: (ctx) => CompaniesBloc(state.initData.companies), ), @@ -175,19 +176,44 @@ class _InitialPageState extends State with WidgetsBindingObserver { onGenerateRoute: (settings) => Routes.onGenerateRoute(settings.name), ), - BlocBuilder( - builder: (context, state) { + Positioned( + top: Dim.heightPercent( + (kToolbarHeight * 0.15).round()) + + MediaQuery.of(context).padding.top, + child: BlocBuilder( + builder: (context, state) { print('Connection state: $state'); + return AnimatedSwitcher( + duration: Duration(milliseconds: 250), + switchOutCurve: Threshold(0), + transitionBuilder: + (Widget child, Animation animation) { + return SlideTransition( + position: Tween( + begin: const Offset(0, -1), + end: const Offset(0, 0), + ).animate(animation), + child: child, + ); + }, + child: state is cb.ConnectionLost + ? Container( + key: UniqueKey(), + child: NetworkStatusBar(), + ) + : SizedBox(key: UniqueKey()), + ); if (state is cb.ConnectionLost) { return Positioned( - top: Dim.heightPercent((kToolbarHeight * 0.15).round()) + + top: Dim.heightPercent( + (kToolbarHeight * 0.15).round()) + MediaQuery.of(context).padding.top, child: NetworkStatusBar(), ); } else { return const SizedBox(); } - } + }), ), ], ), From 0f78c535f28aa5b7ccd8fc8139db7f09757be733 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 21:28:54 +0300 Subject: [PATCH 13/25] Merged from main. --- lib/pages/initial_page.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index fa2ca8f6..f6c09be3 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -78,6 +78,12 @@ class _InitialPageState extends State with WidgetsBindingObserver { return AuthPage(); // return WebAuthPage(); } + if (state is Registration) { + return WebAuthPage(state.link); + } + if (state is PasswordReset) { + return WebAuthPage(state.link); + } if (state is Authenticated) { return MultiBlocProvider( providers: [ From aa500ed7fbd05b9da74f1f53a0f84da2c78dd4aa Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Wed, 27 Jan 2021 23:55:03 +0300 Subject: [PATCH 14/25] Threads list behavior rework. --- lib/pages/initial_page.dart | 2 +- lib/pages/thread_page.dart | 8 +- lib/widgets/thread/thread_messages_list.dart | 104 +++++++++++-------- 3 files changed, 64 insertions(+), 50 deletions(-) diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index f6c09be3..8510bcf4 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -188,7 +188,7 @@ class _InitialPageState extends State with WidgetsBindingObserver { MediaQuery.of(context).padding.top, child: BlocBuilder( builder: (context, state) { - print('Connection state: $state'); + // print('Connection state: $state'); return AnimatedSwitcher( duration: Duration(milliseconds: 250), switchOutCurve: Threshold(0), diff --git a/lib/pages/thread_page.dart b/lib/pages/thread_page.dart index f002c20d..3ee6d1f8 100644 --- a/lib/pages/thread_page.dart +++ b/lib/pages/thread_page.dart @@ -122,13 +122,9 @@ class ThreadPage extends StatelessWidget { child: BlocProvider( create: (ctx) => MessageEditBloc(), child: Column( - mainAxisSize: MainAxisSize.min, + mainAxisSize: MainAxisSize.max, + mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Divider( - thickness: 1.0, - height: 1.0, - color: Color(0xffEEEEEE), - ), ThreadMessagesList(), BlocBuilder( buildWhen: (_, current) => diff --git a/lib/widgets/thread/thread_messages_list.dart b/lib/widgets/thread/thread_messages_list.dart index 379db8dc..0706786f 100644 --- a/lib/widgets/thread/thread_messages_list.dart +++ b/lib/widgets/thread/thread_messages_list.dart @@ -3,6 +3,7 @@ import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:scrollable_positioned_list/scrollable_positioned_list.dart'; import 'package:twake/blocs/base_channel_bloc.dart'; import 'package:twake/blocs/threads_bloc.dart'; +import 'package:twake/config/dimensions_config.dart'; import 'package:twake/widgets/message/message_tile.dart'; import 'package:twake/models/message.dart'; @@ -21,6 +22,11 @@ class _ThreadMessagesListState crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start, children: [ + Divider( + thickness: 1.0, + height: 1.0, + color: Color(0xffEEEEEE), + ), Padding( padding: const EdgeInsets.only(top: 12.0), child: MessageTile( @@ -75,29 +81,18 @@ class _ThreadMessagesListState ); } - final ItemScrollController _itemScrollController = ItemScrollController(); - final ItemPositionsListener _itemPositionsListener = - ItemPositionsListener.create(); + double _sizedBoxHeight; + Size _screenSize; + double _textHeight; + final GlobalKey _redKey = GlobalKey(); + double appBarHeight; + List widgets = []; + var _messages = []; - var _lastIndex = 0; @override void initState() { super.initState(); - WidgetsBinding.instance.addPostFrameCallback((_) { - if (_itemScrollController.isAttached) { - _itemScrollController?.jumpTo(index: _messages.length); - } - }); - _itemPositionsListener.itemPositions.addListener(() { - final lastPosition = _itemPositionsListener.itemPositions.value.last; - final index = lastPosition.index; - if (_lastIndex != index) { - print(_lastIndex); - _lastIndex = index; - _itemScrollController?.jumpTo(index: _lastIndex); - } - }); } @override @@ -106,36 +101,59 @@ class _ThreadMessagesListState builder: (ctx, state) { if (state is MessagesLoaded) { _messages = state.messages.reversed.toList(); - if (_itemScrollController.isAttached) { - _itemScrollController?.jumpTo( - index: _messages.length, - alignment: 1.0, - ); - } } - return Expanded( + return Flexible( child: state is MessagesLoaded - ? ScrollablePositionedList.builder( - reverse: false, - initialAlignment: 0.0, - initialScrollIndex: 0, - itemScrollController: _itemScrollController, - itemPositionsListener: _itemPositionsListener, - itemCount: _messages.length, - itemBuilder: (ctx, i) { - if (i == 0) { - return buildThreadMessageColumn(state); - } else { - return MessageTile( - message: _messages[i], - key: ValueKey(_messages[i].id), - ); - } - }, - ) + ? Container( + color: Colors.red, + child: ListView.builder( + reverse: false, + shrinkWrap: true, + itemCount: _messages.length, + itemBuilder: (context, i) { + if (i == 0) { + return buildThreadMessageColumn(state); + } else { + return MessageTile( + message: _messages[i], + key: ValueKey(_messages[i].id), + ); + } + }, + ), + ) : SingleChildScrollView(child: buildThreadMessageColumn(state)), ); }, ); } + + Size _getSizes(GlobalKey key) { + final RenderBox renderBoxRed = key.currentContext.findRenderObject(); + final sizeRed = renderBoxRed.size; + return sizeRed; + } + + _insertBlanks() async { + final Size _appBarSize = Size.fromHeight(Dim.heightPercent( + (kToolbarHeight * 0.15).round(), + ));//_getSizes(_appBarKey); + final Size _containerSize = _getSizes(_redKey); + + final int _blankLinesTotal = ((_screenSize.height - + _appBarSize.height - + _containerSize.height - + 60) ~/ + _textHeight); + + final double blankLinesHeight = _textHeight * _blankLinesTotal; + _sizedBoxHeight = blankLinesHeight + + (_screenSize.height - + _appBarSize.height - + _containerSize.height - + 60 - + blankLinesHeight); + widgets.insert(0, SizedBox(height: _sizedBoxHeight)); + setState(() {}); + } } From 901bd9cec944dfb896acf1a2127551af30621fd6 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Thu, 28 Jan 2021 00:14:38 +0300 Subject: [PATCH 15/25] Scroll physics has been updated in threads. --- lib/widgets/thread/thread_messages_list.dart | 63 +++++++++++++------- 1 file changed, 40 insertions(+), 23 deletions(-) diff --git a/lib/widgets/thread/thread_messages_list.dart b/lib/widgets/thread/thread_messages_list.dart index 0706786f..2a0e7c69 100644 --- a/lib/widgets/thread/thread_messages_list.dart +++ b/lib/widgets/thread/thread_messages_list.dart @@ -90,9 +90,27 @@ class _ThreadMessagesListState var _messages = []; + var _controller = ScrollController(); + ScrollPhysics _physics = BouncingScrollPhysics(); + @override void initState() { super.initState(); + + _controller.addListener(() { + // print(_controller.position.pixels); + if (_controller.position.pixels > 100 && _physics is! ClampingScrollPhysics) { + setState(() => _physics = ClampingScrollPhysics()); + } else if (_physics is! BouncingScrollPhysics) { + setState(() => _physics = BouncingScrollPhysics()); + } + }); + } + + @override + void dispose() { + _controller.dispose(); + super.dispose(); } @override @@ -100,28 +118,27 @@ class _ThreadMessagesListState return BlocBuilder, MessagesState>( builder: (ctx, state) { if (state is MessagesLoaded) { - _messages = state.messages.reversed.toList(); + _messages = state.messages; } return Flexible( child: state is MessagesLoaded - ? Container( - color: Colors.red, - child: ListView.builder( - reverse: false, - shrinkWrap: true, - itemCount: _messages.length, - itemBuilder: (context, i) { - if (i == 0) { - return buildThreadMessageColumn(state); - } else { - return MessageTile( - message: _messages[i], - key: ValueKey(_messages[i].id), - ); - } - }, - ), - ) + ? ListView.builder( + controller: _controller, + physics: _physics, + reverse: true, + shrinkWrap: true, + itemCount: _messages.length, + itemBuilder: (context, i) { + if (i == _messages.length - 1) { + return buildThreadMessageColumn(state); + } else { + return MessageTile( + message: _messages[i], + key: ValueKey(_messages[i].id), + ); + } + }, + ) : SingleChildScrollView(child: buildThreadMessageColumn(state)), ); }, @@ -137,13 +154,13 @@ class _ThreadMessagesListState _insertBlanks() async { final Size _appBarSize = Size.fromHeight(Dim.heightPercent( (kToolbarHeight * 0.15).round(), - ));//_getSizes(_appBarKey); + )); //_getSizes(_appBarKey); final Size _containerSize = _getSizes(_redKey); final int _blankLinesTotal = ((_screenSize.height - - _appBarSize.height - - _containerSize.height - - 60) ~/ + _appBarSize.height - + _containerSize.height - + 60) ~/ _textHeight); final double blankLinesHeight = _textHeight * _blankLinesTotal; From 1ec4d5f4b4548675c51529e236bd1bacd5939729 Mon Sep 17 00:00:00 2001 From: romka <8026787@gmail.com> Date: Thu, 28 Jan 2021 10:27:14 +0300 Subject: [PATCH 16/25] NSAppTransportSecurity --- ios/Podfile.lock | 4 ++-- .../project.xcworkspace/contents.xcworkspacedata | 2 +- ios/Runner/Info.plist | 6 ++++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 526421b7..6f6a8aad 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -158,7 +158,7 @@ SPEC CHECKSUMS: FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 FirebaseInstanceID: bd3ffc24367f901a43c063b36c640b345a4a5dd1 FirebaseMessaging: 5eca4ef173de76253352511aafef774caa1cba2a - Flutter: 0e3d915762c693b495b44d77113d4970485de6ec + Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c flutter_inappwebview: 69dfbac46157b336ffbec19ca6dfd4638c7bf189 FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 @@ -176,4 +176,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.9.1 +COCOAPODS: 1.10.0 diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata index 1d526a16..919434a6 100644 --- a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:"> diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 3f04ec65..7d43ccb5 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -56,5 +56,11 @@ UIViewControllerBasedStatusBarAppearance + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + NSAllowsArbitraryLoadsInWebContent + From 0ab63b4eeb480b587d08bb8985e9d8da5b43f4f1 Mon Sep 17 00:00:00 2001 From: romka <8026787@gmail.com> Date: Thu, 28 Jan 2021 10:29:24 +0300 Subject: [PATCH 17/25] NSAppTransportSecurity --- ios/Runner/Info.plist | 1 + 1 file changed, 1 insertion(+) diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 7d43ccb5..2d5e9ae8 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -62,5 +62,6 @@ NSAllowsArbitraryLoadsInWebContent + From 85967a49b4345fce78d4e5ee06ed86c747ecfde6 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Thu, 28 Jan 2021 10:50:37 +0300 Subject: [PATCH 18/25] DiagonalClipper behavior fixed. --- lib/pages/initial_page.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index 8510bcf4..0a36d715 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -69,6 +69,7 @@ class _InitialPageState extends State with WidgetsBindingObserver { @override Widget build(BuildContext context) { return Scaffold( + resizeToAvoidBottomInset: false, body: BlocBuilder( builder: (ctx, state) { if (state is AuthInitializing) { From 7857f7bd1d26478879213133fb4dd61908b8bd96 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Thu, 28 Jan 2021 17:44:33 +0300 Subject: [PATCH 19/25] Added sentry logging to application in release mode + bug fixes --- android/app/build.gradle | 1 + lib/blocs/base_channel_bloc.dart | 2 +- lib/blocs/messages_bloc.dart | 2 +- lib/blocs/threads_bloc.dart | 2 +- lib/main.dart | 44 ++++++++++++++------ lib/repositories/collection_repository.dart | 7 +++- lib/services/storage/sqlite.dart | 1 + lib/utils/dateformatter.dart | 14 +++---- lib/widgets/channel/channel_tile.dart | 3 +- lib/widgets/message/message_modal_sheet.dart | 6 +-- lib/widgets/message/message_tile.dart | 16 ++++++- lib/widgets/thread/thread_messages_list.dart | 5 ++- pubspec.yaml | 2 +- 13 files changed, 69 insertions(+), 36 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index a8380a2f..85f860d4 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -41,6 +41,7 @@ android { applicationId "com.twake.twake" minSdkVersion 17 targetSdkVersion 29 + multiDexEnabled true versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/lib/blocs/base_channel_bloc.dart b/lib/blocs/base_channel_bloc.dart index f0ed6afd..4db166d1 100644 --- a/lib/blocs/base_channel_bloc.dart +++ b/lib/blocs/base_channel_bloc.dart @@ -30,7 +30,7 @@ abstract class BaseChannelBloc extends Bloc { ch.messagesTotal += event.totalModifier ?? 0; ch.messagesUnread += event.unreadModifier ?? 0; ch.lastActivity = - event.timeStamp ?? DateTime.now().millisecondsSinceEpoch ~/ 1000; + event.timeStamp ?? DateTime.now().millisecondsSinceEpoch; repository.saveOne(ch); } else return; diff --git a/lib/blocs/messages_bloc.dart b/lib/blocs/messages_bloc.dart index 345a417d..f5586ae5 100644 --- a/lib/blocs/messages_bloc.dart +++ b/lib/blocs/messages_bloc.dart @@ -218,7 +218,7 @@ class MessagesBloc id: dummyId, threadId: body['thread_id'], userId: ProfileBloc.userId, - creationDate: DateTime.now().millisecondsSinceEpoch ~/ 1000, + creationDate: DateTime.now().millisecondsSinceEpoch, content: MessageTwacode(originalStr: body['original_str']), reactions: {}, responsesCount: 0, diff --git a/lib/blocs/threads_bloc.dart b/lib/blocs/threads_bloc.dart index f5d5c9e1..d96781fe 100644 --- a/lib/blocs/threads_bloc.dart +++ b/lib/blocs/threads_bloc.dart @@ -129,7 +129,7 @@ class ThreadsBloc id: dummyId, threadId: body['thread_id'], userId: ProfileBloc.userId, - creationDate: DateTime.now().millisecondsSinceEpoch ~/ 1000, + creationDate: DateTime.now().millisecondsSinceEpoch, content: MessageTwacode(originalStr: body['original_str']), reactions: {}, responsesCount: 0, diff --git a/lib/main.dart b/lib/main.dart index d26c0037..32c80fac 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,3 +1,4 @@ +import 'dart:async'; import 'package:connectivity/connectivity.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; @@ -9,23 +10,40 @@ import 'package:twake/config/styles_config.dart'; import 'package:twake/pages/initial_page.dart'; import 'package:twake/repositories/auth_repository.dart'; import 'package:twake/services/init.dart'; +import 'package:twake/utils/sentry.dart'; void main() async { - WidgetsFlutterBinding.ensureInitialized(); + runZonedGuarded>(() async { + WidgetsFlutterBinding.ensureInitialized(); - final AuthRepository repository = await initAuth(); - cb.ConnectionState connectionState; - final res = await Connectivity().checkConnectivity(); - if (res == ConnectivityResult.none) { - connectionState = cb.ConnectionLost(''); - } else if (res == ConnectivityResult.wifi) { - connectionState = cb.ConnectionWifi(); - } else if (res == ConnectivityResult.mobile) { - connectionState = cb.ConnectionCellular(); - } + final AuthRepository repository = await initAuth(); + cb.ConnectionState connectionState; + final res = await Connectivity().checkConnectivity(); + if (res == ConnectivityResult.none) { + connectionState = cb.ConnectionLost(''); + } else if (res == ConnectivityResult.wifi) { + connectionState = cb.ConnectionWifi(); + } else if (res == ConnectivityResult.mobile) { + connectionState = cb.ConnectionCellular(); + } + await SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]); - SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]) - .then((_) => runApp(TwakeMobileApp(repository, connectionState))); + FlutterError.onError = (FlutterErrorDetails details) { + if (isInDebugMode) { + // In development mode, simply print to console. + FlutterError.dumpErrorToConsole(details); + } else { + // In production mode, report to the application zone to report to + // Sentry. + Zone.current.handleUncaughtError(details.exception, details.stack); + } + }; + runApp(TwakeMobileApp(repository, connectionState)); + }, (Object error, StackTrace stackTrace) { + // Whenever an error occurs, call the `reportError` function. This sends + // Dart errors to the dev console or Sentry depending on the environment. + reportError(error, stackTrace); + }); } class TwakeMobileApp extends StatelessWidget { diff --git a/lib/repositories/collection_repository.dart b/lib/repositories/collection_repository.dart index d1db32d7..648a2bfe 100644 --- a/lib/repositories/collection_repository.dart +++ b/lib/repositories/collection_repository.dart @@ -101,7 +101,8 @@ class CollectionRepository { }) async { List itemsList = []; if (!forceFromApi) { - logger.d('Reloading $T items from storage...\nFilters: $filters'); + logger.d( + 'Reloading $T items from storage...\nFilters: $filters\nLIMIT: $limit\nOFFSET: $offset'); itemsList = await _storage.batchLoad( type: _typeToStorageType[T], filters: filters, @@ -109,6 +110,7 @@ class CollectionRepository { limit: limit, offset: offset, ); + logger.d('Loaded ${itemsList.length} items'); } bool saveToStore = false; if (itemsList.isEmpty) { @@ -121,8 +123,9 @@ class CollectionRepository { } saveToStore = true; } - if (forceFromApi) + if (forceFromApi) { await _storage.batchDelete(type: _typeToStorageType[T], filters: filters); + } _updateItems(itemsList, saveToStore: saveToStore); return true; } diff --git a/lib/services/storage/sqlite.dart b/lib/services/storage/sqlite.dart index cb01e767..f140e629 100644 --- a/lib/services/storage/sqlite.dart +++ b/lib/services/storage/sqlite.dart @@ -165,6 +165,7 @@ class SQLite with Storage { StorageType type, List filters, }) async { + logger.e('REQUESTING BATCH DELETE\nTYPE: $type\nFILTERS: $filters'); final table = mapTypeToStore(type); final filter = filtersBuild(filters); await _db.delete(table, where: filter.item1, whereArgs: filter.item2); diff --git a/lib/utils/dateformatter.dart b/lib/utils/dateformatter.dart index 1c522d6e..bb533ac5 100644 --- a/lib/utils/dateformatter.dart +++ b/lib/utils/dateformatter.dart @@ -5,7 +5,7 @@ class DateFormatter { /// like [just now] or [today] static String getVerboseDateTime(int timestamp) { if (timestamp == null) return ''; - final dateTime = DateTime.fromMillisecondsSinceEpoch(timestamp * 1000); + final dateTime = DateTime.fromMillisecondsSinceEpoch(timestamp); final localDT = dateTime.toLocal(); // if timestamp is less than a minute old return 'Now' DateTime justNow = DateTime.now(); @@ -15,7 +15,7 @@ class DateFormatter { // if the date is the same return time without seconds, taking // locale into account - String approximateTime = DateFormat('HH:mm').format(dateTime); + String approximateTime = DateFormat('HH:mm').format(localDT); if (localDT.year == justNow.year && localDT.month == justNow.month && localDT.day == justNow.day) { @@ -24,17 +24,15 @@ class DateFormatter { // include year in date if message is from previous year if (justNow.difference(localDT) > Duration(days: 365)) { - return '${DateFormat('d MMM y HH:mm').format(dateTime)}'; + return '${DateFormat('d MMM y HH:mm').format(localDT)}'; } - return '${DateFormat('d MMM HH:mm').format(dateTime)}'; - - // by default return 'year/month/day, time' + return '${DateFormat('d MMM HH:mm').format(localDT)}'; } static String getVerboseDate(int timestamp) { DateTime dateTime = - DateTime.fromMillisecondsSinceEpoch(timestamp * 1000).toLocal(); + DateTime.fromMillisecondsSinceEpoch(timestamp).toLocal(); DateTime justNow = DateTime.now().subtract(Duration(minutes: 1)); if (!dateTime.difference(justNow).isNegative) { return 'Now'; @@ -56,7 +54,7 @@ class DateFormatter { // Return just time static String getVerboseTime(int timestamp) { DateTime dateTime = - DateTime.fromMillisecondsSinceEpoch(timestamp * 1000).toLocal(); + DateTime.fromMillisecondsSinceEpoch(timestamp).toLocal(); return '${DateFormat('HH:mm').format(dateTime)}'; } } diff --git a/lib/widgets/channel/channel_tile.dart b/lib/widgets/channel/channel_tile.dart index 8f1d81d5..f643337b 100644 --- a/lib/widgets/channel/channel_tile.dart +++ b/lib/widgets/channel/channel_tile.dart @@ -65,7 +65,8 @@ class ChannelTile extends StatelessWidget { color: Color(0xff444444), ), ), - if (channel.description != null && channel.description.isNotEmpty) + if (channel.description != null && + channel.description.isNotEmpty) Padding( padding: EdgeInsets.only(top: 4.0), child: Text( diff --git a/lib/widgets/message/message_modal_sheet.dart b/lib/widgets/message/message_modal_sheet.dart index a1b50a65..5fd7d2c6 100644 --- a/lib/widgets/message/message_modal_sheet.dart +++ b/lib/widgets/message/message_modal_sheet.dart @@ -11,7 +11,7 @@ class MessageModalSheet extends StatefulWidget { final int responsesCount; final void Function(BuildContext, String, {bool autofocus}) onReply; final void Function(BuildContext) onDelete; - final void Function(BuildContext) onEdit; + final Function onEdit; final Function onCopy; final bool isThread; final BuildContext ctx; @@ -89,9 +89,7 @@ class _MessageModalSheetState extends State { color: Color(0xff444444), ), ), - onTap: () { - widget.onEdit(widget.ctx); - }, + onTap: widget.onEdit, ), if (!widget.isThread) ListTile( diff --git a/lib/widgets/message/message_tile.dart b/lib/widgets/message/message_tile.dart index d47fba96..8a67e439 100644 --- a/lib/widgets/message/message_tile.dart +++ b/lib/widgets/message/message_tile.dart @@ -51,6 +51,7 @@ class MessageTile extends StatelessWidget { onMessageEditComplete: (text) { BlocProvider.of(context) .add(UpdateContent(text)); + BlocProvider.of(context).add(CancelMessageEdit()); }), ); } @@ -103,7 +104,19 @@ class MessageTile extends StatelessWidget { isThread: messageState.threadId != null || hideShowAnswers, onReply: onReply, - onEdit: onEdit, + onEdit: () { + Navigator.of(ctx).pop(); + BlocProvider.of(ctx).add( + EditMessage( + originalStr: message.content.originalStr, + onMessageEditComplete: (text) { + BlocProvider.of(ctx) + .add(UpdateContent(text)); + BlocProvider.of(ctx) + .add(CancelMessageEdit()); + }), + ); + }, ctx: ctx, onDelete: (ctx) => onDelete( ctx, @@ -113,7 +126,6 @@ class MessageTile extends StatelessWidget { threadId: messageState.threadId, )), onCopy: () { - print('TEXT: ${messageState.text}'); onCopy(context: ctx, text: messageState.text); }, ); diff --git a/lib/widgets/thread/thread_messages_list.dart b/lib/widgets/thread/thread_messages_list.dart index 2a0e7c69..f7de8ce3 100644 --- a/lib/widgets/thread/thread_messages_list.dart +++ b/lib/widgets/thread/thread_messages_list.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:scrollable_positioned_list/scrollable_positioned_list.dart'; +// import 'package:scrollable_positioned_list/scrollable_positioned_list.dart'; import 'package:twake/blocs/base_channel_bloc.dart'; import 'package:twake/blocs/threads_bloc.dart'; import 'package:twake/config/dimensions_config.dart'; @@ -99,7 +99,8 @@ class _ThreadMessagesListState _controller.addListener(() { // print(_controller.position.pixels); - if (_controller.position.pixels > 100 && _physics is! ClampingScrollPhysics) { + if (_controller.position.pixels > 100 && + _physics is! ClampingScrollPhysics) { setState(() => _physics = ClampingScrollPhysics()); } else if (_physics is! BouncingScrollPhysics) { setState(() => _physics = BouncingScrollPhysics()); diff --git a/pubspec.yaml b/pubspec.yaml index 81283e13..db46e46d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -40,7 +40,7 @@ dependencies: sqflite: ^1.3.2+2 tuple: ^1.0.3 # Uncomment if sentry is needed - # sentry_flutter: ^4.0.0-beta.1 + sentry_flutter: ^4.0.4 firebase_messaging: ^7.0.3 equatable: ^1.2.5 flutter_bloc: ^6.1.1 From e8658f22e7321649bbd0c98d965b7262103d5be6 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Thu, 28 Jan 2021 17:45:13 +0300 Subject: [PATCH 20/25] added sentry utils --- lib/utils/sentry.dart | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/utils/sentry.dart diff --git a/lib/utils/sentry.dart b/lib/utils/sentry.dart new file mode 100644 index 00000000..5b161ef1 --- /dev/null +++ b/lib/utils/sentry.dart @@ -0,0 +1,35 @@ +import 'package:sentry_flutter/sentry_flutter.dart'; + +final SentryClient _sentry = SentryClient( + SentryOptions( + dsn: + 'https://2efc542ea1da4785aefcb93d55538e14@o310327.ingest.sentry.io/5544661'), +); + +bool get isInDebugMode { + // Assume you're in production mode. + bool inDebugMode = false; + + // Assert expressions are only evaluated during development. They are ignored + // in production. Therefore, this code only sets `inDebugMode` to true + // in a development environment. + assert(inDebugMode = true); + print('IN DEBUG: $inDebugMode'); + + return inDebugMode; +} + +Future reportError(dynamic error, dynamic stackTrace) async { + // Print the exception to the console. + print('Caught error: $error'); + if (isInDebugMode) { + // Print the full stacktrace in debug mode. + print(stackTrace); + } else { + // Send the Exception and Stacktrace to Sentry in Production mode. + _sentry.captureException( + error, + stackTrace: stackTrace, + ); + } +} From ad053a687c5a3e49e496da85b77de420058ca5e4 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Thu, 28 Jan 2021 17:58:18 +0300 Subject: [PATCH 21/25] Screen flicker when added or removing messages fixed. --- lib/widgets/message/message_tile.dart | 37 ++-- .../message/messages_grouped_list.dart | 176 +++++++++--------- 2 files changed, 115 insertions(+), 98 deletions(-) diff --git a/lib/widgets/message/message_tile.dart b/lib/widgets/message/message_tile.dart index d47fba96..17d7942e 100644 --- a/lib/widgets/message/message_tile.dart +++ b/lib/widgets/message/message_tile.dart @@ -19,7 +19,7 @@ import 'package:twake/widgets/common/image_avatar.dart'; import 'package:twake/widgets/common/reaction.dart'; import 'package:twake/widgets/message/message_modal_sheet.dart'; -class MessageTile extends StatelessWidget { +class MessageTile extends StatefulWidget { final bool hideShowAnswers; final Message message; @@ -29,10 +29,25 @@ class MessageTile extends StatelessWidget { Key key, }) : super(key: key); + @override + _MessageTileState createState() => _MessageTileState(); +} + +class _MessageTileState extends State> { + bool _hideShowAnswers; + Message _message; + + @override + void initState() { + super.initState(); + _hideShowAnswers = widget.hideShowAnswers; + _message = widget.message; + } + void onReply(context, String messageId, {bool autofocus: false}) { BlocProvider.of>(context).add(SelectMessage(messageId)); BlocProvider.of(context) - .add(LoadDraft(id: message.id, type: DraftType.thread)); + .add(LoadDraft(id: _message.id, type: DraftType.thread)); Navigator.of(context).push( MaterialPageRoute( @@ -47,7 +62,7 @@ class MessageTile extends StatelessWidget { Navigator.of(context).pop(); BlocProvider.of(context).add( EditMessage( - originalStr: message.content.originalStr, + originalStr: _message.content.originalStr, onMessageEditComplete: (text) { BlocProvider.of(context) .add(UpdateContent(text)); @@ -67,7 +82,7 @@ class MessageTile extends StatelessWidget { } void onDelete(context, RemoveMessage event) { - if (message.threadId == null) + if (_message.threadId == null) BlocProvider.of>(context).add(event); else BlocProvider.of>(context).add(event); @@ -79,11 +94,11 @@ class MessageTile extends StatelessWidget { return MultiBlocProvider( providers: [ BlocProvider( - create: (_) => SingleMessageBloc(message), + create: (_) => SingleMessageBloc(_message), lazy: false, ), BlocProvider( - create: (_) => UserBloc(message.userId), + create: (_) => UserBloc(_message.userId), lazy: false, ) ], @@ -101,14 +116,14 @@ class MessageTile extends StatelessWidget { messageId: messageState.id, responsesCount: messageState.responsesCount, isThread: - messageState.threadId != null || hideShowAnswers, + messageState.threadId != null || _hideShowAnswers, onReply: onReply, onEdit: onEdit, ctx: ctx, onDelete: (ctx) => onDelete( ctx, RemoveMessage( - channelId: message.channelId, + channelId: _message.channelId, messageId: messageState.id, threadId: messageState.threadId, )), @@ -123,7 +138,7 @@ class MessageTile extends StatelessWidget { FocusManager.instance.primaryFocus.unfocus(); if (messageState.threadId == null && messageState.responsesCount != 0 && - !hideShowAnswers) { + !_hideShowAnswers) { onReply(context, messageState.id); } }, @@ -171,7 +186,7 @@ class MessageTile extends StatelessWidget { ), Text( messageState.threadId != null || - hideShowAnswers + _hideShowAnswers ? DateFormatter.getVerboseDateTime( messageState.creationDate) : DateFormatter.getVerboseTime( @@ -205,7 +220,7 @@ class MessageTile extends StatelessWidget { }), if (messageState.responsesCount > 0 && messageState.threadId == null && - !hideShowAnswers) + !_hideShowAnswers) Text( 'See all answers (${messageState.responsesCount})', style: StylesConfig.miniPurple, diff --git a/lib/widgets/message/messages_grouped_list.dart b/lib/widgets/message/messages_grouped_list.dart index b3693c88..ae9a05a7 100644 --- a/lib/widgets/message/messages_grouped_list.dart +++ b/lib/widgets/message/messages_grouped_list.dart @@ -9,95 +9,27 @@ import 'package:twake/utils/dateformatter.dart'; import 'package:twake/widgets/message/message_tile.dart'; class MessagesGroupedList extends StatelessWidget { - Widget buildMessagesList(context, MessagesState state) { - if (state is MessagesLoaded) { - return GestureDetector( - onTap: () => FocusScope.of(context).unfocus(), - child: StickyGroupedListView( - order: StickyGroupedListOrder.DESC, - stickyHeaderBackgroundColor: - Theme.of(context).scaffoldBackgroundColor, - reverse: true, - elements: state.messages, - groupBy: (Message m) { - final DateTime dt = - DateTime.fromMillisecondsSinceEpoch(m.creationDate * 1000); - return DateTime(dt.year, dt.month, dt.day); - }, - groupComparator: (DateTime value1, DateTime value2) => - value1.compareTo(value2), - itemComparator: (Message m1, Message m2) { - return m1.creationDate.compareTo(m2.creationDate); - }, - separator: SizedBox(height: Dim.hm2), - groupSeparatorBuilder: (Message message) { - return GestureDetector( - onTap: () { - FocusManager.instance.primaryFocus.unfocus(); - }, - child: Container( - height: Dim.hm3, - margin: EdgeInsets.symmetric(vertical: Dim.hm2), - color: Theme.of(context).scaffoldBackgroundColor, - child: Stack( - children: [ - Align( - alignment: Alignment.center, - child: Divider( - thickness: 0.0, - ), - ), - Align( - // alignment: Alignment.center, - child: Container( - color: Theme.of(context).scaffoldBackgroundColor, - width: Dim.widthPercent(30), - child: Padding( - padding: const EdgeInsets.all(1.0), - child: Text( - DateFormatter.getVerboseDate( - message.creationDate), - style: TextStyle( - fontSize: 12.0, - fontWeight: FontWeight.w400, - color: Color(0xff92929C), - ), - textAlign: TextAlign.center, - ), - ), - ), - ), - ], - ), - ), - ); - }, - itemBuilder: (_, Message message) { - return MessageTile( - message: message, - key: ValueKey( - message.id + message.responsesCount.toString(), - ), - ); - }), - ); - } else if (state is MessagesEmpty) - return Center( - child: Text( - state is ErrorLoadingMessages - ? 'Couldn\'t load messages' - : 'No messages yet', - ), - ); - else - return Center( - child: CircularProgressIndicator(), - ); - } - @override Widget build(BuildContext context) { return BlocBuilder, MessagesState>(builder: (ctx, state) { + var messages = []; + + if (state is MessagesLoaded) { + messages = state.messages; + } else if (state is MessagesEmpty) { + return Center( + child: Text( + state is ErrorLoadingMessages + ? 'Couldn\'t load messages' + : 'No messages yet', + ), + ); + } else { + return Center( + child: CircularProgressIndicator(), + ); + } + return NotificationListener( onNotification: (ScrollNotification scrollInfo) { if (scrollInfo.metrics.pixels == scrollInfo.metrics.maxScrollExtent) { @@ -117,7 +49,77 @@ class MessagesGroupedList extends StatelessWidget { onTap: () { FocusManager.instance.primaryFocus.unfocus(); }, - child: buildMessagesList(context, state), + child: GestureDetector( + onTap: () => FocusScope.of(context).unfocus(), + child: StickyGroupedListView( + order: StickyGroupedListOrder.DESC, + stickyHeaderBackgroundColor: + Theme.of(context).scaffoldBackgroundColor, + reverse: true, + elements: messages, + groupBy: (Message m) { + final DateTime dt = DateTime.fromMillisecondsSinceEpoch( + m.creationDate * 1000); + return DateTime(dt.year, dt.month, dt.day); + }, + groupComparator: (DateTime value1, DateTime value2) => + value1.compareTo(value2), + itemComparator: (Message m1, Message m2) { + return m1.creationDate.compareTo(m2.creationDate); + }, + separator: SizedBox(height: Dim.hm2), + groupSeparatorBuilder: (Message message) { + return GestureDetector( + onTap: () { + FocusManager.instance.primaryFocus.unfocus(); + }, + child: Container( + height: Dim.hm3, + margin: EdgeInsets.symmetric(vertical: Dim.hm2), + color: Theme.of(context).scaffoldBackgroundColor, + child: Stack( + children: [ + Align( + alignment: Alignment.center, + child: Divider( + thickness: 0.0, + ), + ), + Align( + // alignment: Alignment.center, + child: Container( + color: + Theme.of(context).scaffoldBackgroundColor, + width: Dim.widthPercent(30), + child: Padding( + padding: const EdgeInsets.all(1.0), + child: Text( + DateFormatter.getVerboseDate( + message.creationDate), + style: TextStyle( + fontSize: 12.0, + fontWeight: FontWeight.w400, + color: Color(0xff92929C), + ), + textAlign: TextAlign.center, + ), + ), + ), + ), + ], + ), + ), + ); + }, + itemBuilder: (_, Message message) { + return MessageTile( + message: message, + key: ValueKey( + message.id + message.responsesCount.toString(), + ), + ); + }), + ), ), ), ); From 11bf11bbc31ceec3a92a5497366c248dcacc6345 Mon Sep 17 00:00:00 2001 From: Pavel Zarudnev Date: Thu, 28 Jan 2021 18:12:24 +0300 Subject: [PATCH 22/25] Small fix. --- ios/Podfile.lock | 20 ++++++++++++++++---- lib/widgets/message/message_tile.dart | 2 +- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 6f6a8aad..a1f8da19 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -80,9 +80,15 @@ PODS: - Flutter - path_provider (0.0.1): - Flutter - - PromisesObjC (1.2.11) + - PromisesObjC (1.2.12) - Protobuf (3.14.0) - Reachability (3.2) + - Sentry (6.1.4): + - Sentry/Core (= 6.1.4) + - Sentry/Core (6.1.4) + - sentry_flutter (0.0.1): + - Flutter + - Sentry (~> 6.1.4) - sqflite (0.0.2): - Flutter - FMDB (>= 2.7.5) @@ -101,6 +107,7 @@ DEPENDENCIES: - image_picker (from `.symlinks/plugins/image_picker/ios`) - package_info (from `.symlinks/plugins/package_info/ios`) - path_provider (from `.symlinks/plugins/path_provider/ios`) + - sentry_flutter (from `.symlinks/plugins/sentry_flutter/ios`) - sqflite (from `.symlinks/plugins/sqflite/ios`) - url_launcher (from `.symlinks/plugins/url_launcher/ios`) - webview_flutter (from `.symlinks/plugins/webview_flutter/ios`) @@ -120,6 +127,7 @@ SPEC REPOS: - PromisesObjC - Protobuf - Reachability + - Sentry EXTERNAL SOURCES: connectivity: @@ -140,6 +148,8 @@ EXTERNAL SOURCES: :path: ".symlinks/plugins/package_info/ios" path_provider: :path: ".symlinks/plugins/path_provider/ios" + sentry_flutter: + :path: ".symlinks/plugins/sentry_flutter/ios" sqflite: :path: ".symlinks/plugins/sqflite/ios" url_launcher: @@ -158,7 +168,7 @@ SPEC CHECKSUMS: FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 FirebaseInstanceID: bd3ffc24367f901a43c063b36c640b345a4a5dd1 FirebaseMessaging: 5eca4ef173de76253352511aafef774caa1cba2a - Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c + Flutter: 0e3d915762c693b495b44d77113d4970485de6ec flutter_inappwebview: 69dfbac46157b336ffbec19ca6dfd4638c7bf189 FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 @@ -167,13 +177,15 @@ SPEC CHECKSUMS: nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62 path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c - PromisesObjC: 8c196f5a328c2cba3e74624585467a557dcb482f + PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97 Protobuf: 0cde852566359049847168e51bd1c690e0f70056 Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96 + Sentry: 9d055e2de30a77685e86b219acf02e59b82091fc + sentry_flutter: 8b2b2e1c0101ef562106b5d272d3c0c741512c01 sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904 url_launcher: 6fef411d543ceb26efce54b05a0a40bfd74cbbef webview_flutter: d2b4d6c66968ad042ad94cbb791f5b72b4678a96 PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.0 +COCOAPODS: 1.9.1 diff --git a/lib/widgets/message/message_tile.dart b/lib/widgets/message/message_tile.dart index 60f84bfb..2ce81b4f 100644 --- a/lib/widgets/message/message_tile.dart +++ b/lib/widgets/message/message_tile.dart @@ -123,7 +123,7 @@ class _MessageTileState extends State> Navigator.of(ctx).pop(); BlocProvider.of(ctx).add( EditMessage( - originalStr: message.content.originalStr, + originalStr: _message.content.originalStr, onMessageEditComplete: (text) { BlocProvider.of(ctx) .add(UpdateContent(text)); From 563c9963d3fa3763ff2797a9b68861996a975664 Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Thu, 28 Jan 2021 18:15:38 +0300 Subject: [PATCH 23/25] Some improvements of message editing --- lib/blocs/message_edit_bloc.dart | 2 ++ lib/blocs/messages_bloc.dart | 6 ++--- lib/blocs/single_message_bloc.dart | 1 + lib/models/message.dart | 1 + lib/repositories/collection_repository.dart | 8 +++---- lib/utils/sentry.dart | 6 ++--- lib/widgets/message/message_tile.dart | 26 +++++++-------------- 7 files changed, 22 insertions(+), 28 deletions(-) diff --git a/lib/blocs/message_edit_bloc.dart b/lib/blocs/message_edit_bloc.dart index dc61a0b0..9006344f 100644 --- a/lib/blocs/message_edit_bloc.dart +++ b/lib/blocs/message_edit_bloc.dart @@ -1,5 +1,6 @@ import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:twake/events/message_edit_event.dart'; +import 'package:twake/services/service_bundle.dart'; import 'package:twake/states/message_edit_state.dart'; export 'package:twake/events/message_edit_event.dart'; @@ -10,6 +11,7 @@ class MessageEditBloc extends Bloc { @override Stream mapEventToState(MessageEditEvent event) async* { + Logger().d('GOT MESSAGE EDIT EVENT $event'); if (event is EditMessage) { yield MessageEditing( onMessageEditComplete: event.onMessageEditComplete, diff --git a/lib/blocs/messages_bloc.dart b/lib/blocs/messages_bloc.dart index f5586ae5..e357b65a 100644 --- a/lib/blocs/messages_bloc.dart +++ b/lib/blocs/messages_bloc.dart @@ -39,9 +39,9 @@ class MessagesBloc }) : super(MessagesEmpty(parentChannel: channelsBloc.repository.selected)) { _subscription = channelsBloc.listen((ChannelState state) { if (state is ChannelPicked) { - repository.logger.d('TRIGGERED MESSAGE FETCH'); - repository.logger - .d('FETCHING CHANNEL MESSAGES: ${state.selected.name}'); + // repository.logger.d('TRIGGERED MESSAGE FETCH'); + // repository.logger + // .d('FETCHING CHANNEL MESSAGES: ${state.selected.name}'); selectedChannel = state.selected; this.add(LoadMessages()); } diff --git a/lib/blocs/single_message_bloc.dart b/lib/blocs/single_message_bloc.dart index ea189507..ea02fbb5 100644 --- a/lib/blocs/single_message_bloc.dart +++ b/lib/blocs/single_message_bloc.dart @@ -33,6 +33,7 @@ class SingleMessageBloc extends Bloc { @override Stream mapEventToState(SingleMessageEvent event) async* { + message.logger.d('GOT MESSAGE EVENT $event'); if (event is UpdateContent) { message.updateContent({ 'company_id': ProfileBloc.selectedCompany, diff --git a/lib/models/message.dart b/lib/models/message.dart index 90c44249..13397843 100644 --- a/lib/models/message.dart +++ b/lib/models/message.dart @@ -68,6 +68,7 @@ class Message extends CollectionItem { : super(id); void updateContent(Map body) { + logger.d('UPDATING MESSAGE CONTENT'); String prevStr = '' + content.originalStr; content.originalStr = body['original_str']; _api.put(Endpoint.messages, body: body).then((_) => save()).catchError((e) { diff --git a/lib/repositories/collection_repository.dart b/lib/repositories/collection_repository.dart index 648a2bfe..58eac1c8 100644 --- a/lib/repositories/collection_repository.dart +++ b/lib/repositories/collection_repository.dart @@ -101,8 +101,8 @@ class CollectionRepository { }) async { List itemsList = []; if (!forceFromApi) { - logger.d( - 'Reloading $T items from storage...\nFilters: $filters\nLIMIT: $limit\nOFFSET: $offset'); + // logger.d( + // 'Reloading $T items from storage...\nFilters: $filters\nLIMIT: $limit\nOFFSET: $offset'); itemsList = await _storage.batchLoad( type: _typeToStorageType[T], filters: filters, @@ -110,7 +110,7 @@ class CollectionRepository { limit: limit, offset: offset, ); - logger.d('Loaded ${itemsList.length} items'); + // logger.d('Loaded ${itemsList.length} items'); } bool saveToStore = false; if (itemsList.isEmpty) { @@ -138,7 +138,7 @@ class CollectionRepository { int offset, }) async { List itemsList = []; - logger.d('Loading more $T items from storage...\nFilters: $filters'); + // logger.d('Loading more $T items from storage...\nFilters: $filters'); itemsList = await _storage.batchLoad( type: _typeToStorageType[T], filters: filters, diff --git a/lib/utils/sentry.dart b/lib/utils/sentry.dart index 5b161ef1..f5d97295 100644 --- a/lib/utils/sentry.dart +++ b/lib/utils/sentry.dart @@ -1,4 +1,5 @@ import 'package:sentry_flutter/sentry_flutter.dart'; +import 'package:logger/logger.dart'; final SentryClient _sentry = SentryClient( SentryOptions( @@ -14,17 +15,16 @@ bool get isInDebugMode { // in production. Therefore, this code only sets `inDebugMode` to true // in a development environment. assert(inDebugMode = true); - print('IN DEBUG: $inDebugMode'); return inDebugMode; } Future reportError(dynamic error, dynamic stackTrace) async { // Print the exception to the console. - print('Caught error: $error'); + Logger().e('Caught error: $error'); if (isInDebugMode) { // Print the full stacktrace in debug mode. - print(stackTrace); + Logger().e(stackTrace); } else { // Send the Exception and Stacktrace to Sentry in Production mode. _sentry.captureException( diff --git a/lib/widgets/message/message_tile.dart b/lib/widgets/message/message_tile.dart index 8a67e439..45543fea 100644 --- a/lib/widgets/message/message_tile.dart +++ b/lib/widgets/message/message_tile.dart @@ -43,19 +43,6 @@ class MessageTile extends StatelessWidget { ); } - void onEdit(context) { - Navigator.of(context).pop(); - BlocProvider.of(context).add( - EditMessage( - originalStr: message.content.originalStr, - onMessageEditComplete: (text) { - BlocProvider.of(context) - .add(UpdateContent(text)); - BlocProvider.of(context).add(CancelMessageEdit()); - }), - ); - } - onCopy({context, text}) { FlutterClipboard.copy(text); Navigator.of(context).pop(); @@ -106,14 +93,17 @@ class MessageTile extends StatelessWidget { onReply: onReply, onEdit: () { Navigator.of(ctx).pop(); - BlocProvider.of(ctx).add( + final smbloc = ctx.read(); + final mebloc = ctx.read(); + mebloc.add( EditMessage( originalStr: message.content.originalStr, onMessageEditComplete: (text) { - BlocProvider.of(ctx) - .add(UpdateContent(text)); - BlocProvider.of(ctx) - .add(CancelMessageEdit()); + // smbloc get's closed if + // listview disposes of message tile + smbloc.add(UpdateContent(text)); + mebloc.add(CancelMessageEdit()); + FocusManager.instance.primaryFocus.unfocus(); }), ); }, From 6389830502ee7b8c4eeebdd6128d57abbfe7762d Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Thu, 28 Jan 2021 18:29:23 +0300 Subject: [PATCH 24/25] Fixed message_edit_field repeated edit focus loss issue --- lib/widgets/message/message_edit_field.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/widgets/message/message_edit_field.dart b/lib/widgets/message/message_edit_field.dart index cb791978..8c1d665c 100644 --- a/lib/widgets/message/message_edit_field.dart +++ b/lib/widgets/message/message_edit_field.dart @@ -78,6 +78,9 @@ class _MessageEditField extends State { if (oldWidget.initialText != widget.initialText) { _controller.text = widget.initialText; } + if (widget.autofocus) { + _focusNode.requestFocus(); + } super.didUpdateWidget(oldWidget); } From 14784abc830dfa36ec8f2d1deab8b69038edba7b Mon Sep 17 00:00:00 2001 From: Makhmudov Babur Date: Thu, 28 Jan 2021 20:18:36 +0300 Subject: [PATCH 25/25] Build increment 2.2.2 --- lib/models/message.g.dart | 15 +++++++-------- pubspec.yaml | 2 +- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/lib/models/message.g.dart b/lib/models/message.g.dart index 44085676..ba3f0e0c 100644 --- a/lib/models/message.g.dart +++ b/lib/models/message.g.dart @@ -14,15 +14,14 @@ Message _$MessageFromJson(Map json) { userId: json['user_id'] as String, appId: json['app_id'] as String, creationDate: json['creation_date'] as int, - ) - ..threadId = json['thread_id'] as String - ..responsesCount = json['responses_count'] as int ?? 0 - ..content = json['content'] == null + threadId: json['thread_id'] as String, + content: json['content'] == null ? null - : MessageTwacode.fromJson(json['content'] as Map) - ..reactions = json['reactions'] as Map ?? {} - ..channelId = json['channel_id'] as String - ..isSelected = json['is_selected'] as int ?? 0; + : MessageTwacode.fromJson(json['content'] as Map), + channelId: json['channel_id'] as String, + responsesCount: json['responses_count'] as int ?? 0, + reactions: json['reactions'] as Map ?? {}, + )..isSelected = json['is_selected'] as int ?? 0; } Map _$MessageToJson(Message instance) => { diff --git a/pubspec.yaml b/pubspec.yaml index db46e46d..67aca278 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 2.2.1 +version: 2.2.2 environment: sdk: ">=2.7.0 <3.0.0"