Skip to content

[firebase_messaging]onLaunch is not fired and can't save dismissed notifications #1838

Closed
@Hyla96

Description

@Hyla96

I've set up my app to receive notifications. I receive notifications while app is in foreground and onMessage fires properly.
If I have my app in background, onResume fires aswell, but just if I click the notification, if I dismiss it and than re-open my app from the background, nothing fires and I lose a notification.
onLaunch never fires, If I send a notification while my app is terminated, nothing happens. When I open it, after a while onMessage fires with the notification I sent while my app was terminated.

I need to save Notifications locally, so users can read them in-app, however, if they dismiss the notification (As 90% of people do when they get a notification and they are busy) I can't save it because no callback is fired.

Steps to Reproduce

JSON:

{	"collapse_key" : "type_a",
 	"priority" : "high",
 	"notification":{
    	"title":"Title from Notification",
      	"body":"At least I tried, from notification",
    },
  
    "data": {
    	"title":"Title from data",
      	"body":"At least I tried, from data",
		"click_action" : "FLUTTER_NOTIFICATION_CLICK",
    },
    "condition": "!('anytopicyoudontwanttouse' in topics)",
}

Add to Manifest:

  <intent-filter>
           <action android:name="FLUTTER_NOTIFICATION_CLICK" />
           <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>

Inside my app:

  void configureNotification() {
    final Firestore _db = Firestore.instance;
    final FirebaseMessaging _fcm = FirebaseMessaging();
    _fcm.configure(
      onMessage: (Map<String, dynamic> message) async {
        print('onMessage: $message'); //Fired always when it is supposed to
        _printMessage(message, 'notification');
      },

      onResume: (Map<String, dynamic> message) async {
        print('onResume: $message'); //Fired only when user clicks over notification
        _printMessage(message, 'data');
      },

      onLaunch: (Map<String, dynamic> message) async {
        print('onLaunch: $message'); //Does never fire
        Alert(
          title: 'On launch',
          desc: '$message'
        ).show();
        _printMessage(message, 'data');
      },
    );
  }

The method:
_printMessage(Map<String, dynamic> _message , String _string)

Saves in a local database the notification recived

Expected results:

onResume and onLaunch fires when I get a notification and my app is in background / terminated.

Actual results:
onLaunch does never fire;
onResume fires only when app is in background (still running) and user presses over notification;

Logs
[        ] > Task :google_maps_flutter:compileDebugAidl NO-SOURCE
[        ] > Task :path_provider:preBuild UP-TO-DATE
[        ] > Task :path_provider:preDebugBuild UP-TO-DATE
[        ] > Task :path_provider:compileDebugAidl NO-SOURCE
[        ] > Task :permission_handler:preBuild UP-TO-DATE
[        ] > Task :permission_handler:preDebugBuild UP-TO-DATE
[        ] > Task :permission_handler:compileDebugAidl NO-SOURCE
[        ] > Task :shared_preferences:preBuild UP-TO-DATE
[        ] > Task :shared_preferences:preDebugBuild UP-TO-DATE
[  +95 ms] > Task :shared_preferences_macos:preBuild UP-TO-DATE
[        ] > Task :shared_preferences_macos:preDebugBuild UP-TO-DATE
[        ] > Task :shared_preferences_macos:compileDebugAidl NO-SOURCE
[        ] > Task :shared_preferences_web:preBuild UP-TO-DATE
[        ] > Task :shared_preferences_web:preDebugBuild UP-TO-DATE
[        ] > Task :shared_preferences_web:compileDebugAidl NO-SOURCE
[        ] > Task :location:compileDebugAidl NO-SOURCE
[        ] > Task :shared_preferences:compileDebugAidl NO-SOURCE
[        ] > Task :sqflite:preBuild UP-TO-DATE
[        ] > Task :sqflite:preDebugBuild UP-TO-DATE
[        ] > Task :sqflite:compileDebugAidl NO-SOURCE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[ +101 ms] > Task :barcode_scan:packageDebugRenderscript NO-SOURCE
[        ] > Task :cloud_firestore:packageDebugRenderscript NO-SOURCE
[        ] > Task :firebase_auth:packageDebugRenderscript NO-SOURCE
[        ] > Task :firebase_auth_web:packageDebugRenderscript NO-SOURCE
[        ] > Task :firebase_core:packageDebugRenderscript NO-SOURCE
[        ] > Task :firebase_core_web:packageDebugRenderscript NO-SOURCE
[        ] > Task :firebase_messaging:packageDebugRenderscript NO-SOURCE
[        ] > Task :firebase_storage:packageDebugRenderscript NO-SOURCE
[        ] > Task :flutter_keyboard_visibility:packageDebugRenderscript NO-SOURCE
[        ] > Task :geolocator:packageDebugRenderscript NO-SOURCE
[        ] > Task :google_api_availability:packageDebugRenderscript NO-SOURCE
[        ] > Task :google_maps_flutter:packageDebugRenderscript NO-SOURCE
[        ] > Task :location:packageDebugRenderscript NO-SOURCE
[        ] > Task :location_permissions:packageDebugRenderscript NO-SOURCE
[        ] > Task :path_provider:packageDebugRenderscript NO-SOURCE
[        ] > Task :permission_handler:packageDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences:packageDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_macos:packageDebugRenderscript NO-SOURCE
[  +95 ms] > Task :shared_preferences_web:packageDebugRenderscript NO-SOURCE
[        ] > Task :sqflite:packageDebugRenderscript NO-SOURCE
[        ] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:checkDebugManifest UP-TO-DATE
[        ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[  +98 ms] > Task :app:cleanMergeDebugAssets
[ +200 ms] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders UP-TO-DATE
[        ] > Task :app:generateDebugAssets UP-TO-DATE
[        ] > Task :barcode_scan:mergeDebugShaders UP-TO-DATE
[        ] > Task :barcode_scan:compileDebugShaders UP-TO-DATE
[        ] > Task :barcode_scan:generateDebugAssets UP-TO-DATE
[        ] > Task :barcode_scan:packageDebugAssets UP-TO-DATE
[        ] > Task :cloud_firestore:mergeDebugShaders UP-TO-DATE
[        ] > Task :cloud_firestore:compileDebugShaders UP-TO-DATE
[        ] > Task :cloud_firestore:generateDebugAssets UP-TO-DATE
[        ] > Task :cloud_firestore:packageDebugAssets UP-TO-DATE
[        ] > Task :firebase_auth:mergeDebugShaders UP-TO-DATE
[  +99 ms] > Task :firebase_auth:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_auth:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_auth:packageDebugAssets UP-TO-DATE
[        ] > Task :firebase_auth_web:mergeDebugShaders UP-TO-DATE
[        ] > Task :firebase_auth_web:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_auth_web:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_auth_web:packageDebugAssets UP-TO-DATE
[        ] > Task :firebase_core:mergeDebugShaders UP-TO-DATE
[        ] > Task :firebase_core:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_core:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_core:packageDebugAssets UP-TO-DATE
[        ] > Task :firebase_core_web:mergeDebugShaders UP-TO-DATE
[        ] > Task :firebase_core_web:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_core_web:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_core_web:packageDebugAssets UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugShaders UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_messaging:packageDebugAssets UP-TO-DATE
[        ] > Task :firebase_storage:mergeDebugShaders UP-TO-DATE
[        ] > Task :firebase_storage:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_storage:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_storage:packageDebugAssets UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:mergeDebugShaders UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:compileDebugShaders UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:generateDebugAssets UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:packageDebugAssets UP-TO-DATE
[        ] > Task :geolocator:mergeDebugShaders UP-TO-DATE
[   +6 ms] > Task :geolocator:compileDebugShaders UP-TO-DATE
[        ] > Task :geolocator:generateDebugAssets UP-TO-DATE
[  +86 ms] > Task :geolocator:packageDebugAssets UP-TO-DATE
[        ] > Task :google_api_availability:mergeDebugShaders UP-TO-DATE
[        ] > Task :google_api_availability:compileDebugShaders UP-TO-DATE
[        ] > Task :google_api_availability:generateDebugAssets UP-TO-DATE
[        ] > Task :google_api_availability:packageDebugAssets UP-TO-DATE
[        ] > Task :google_maps_flutter:mergeDebugShaders UP-TO-DATE
[        ] > Task :google_maps_flutter:compileDebugShaders UP-TO-DATE
[        ] > Task :google_maps_flutter:generateDebugAssets UP-TO-DATE
[        ] > Task :google_maps_flutter:packageDebugAssets UP-TO-DATE
[        ] > Task :location:mergeDebugShaders UP-TO-DATE
[        ] > Task :location:compileDebugShaders UP-TO-DATE
[        ] > Task :location:generateDebugAssets UP-TO-DATE
[        ] > Task :location:packageDebugAssets UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugShaders UP-TO-DATE
[        ] > Task :location_permissions:compileDebugShaders UP-TO-DATE
[        ] > Task :location_permissions:generateDebugAssets UP-TO-DATE
[        ] > Task :location_permissions:packageDebugAssets UP-TO-DATE
[        ] > Task :path_provider:mergeDebugShaders UP-TO-DATE
[        ] > Task :path_provider:compileDebugShaders UP-TO-DATE
[        ] > Task :path_provider:generateDebugAssets UP-TO-DATE
[        ] > Task :path_provider:packageDebugAssets UP-TO-DATE
[        ] > Task :permission_handler:mergeDebugShaders UP-TO-DATE
[        ] > Task :permission_handler:compileDebugShaders UP-TO-DATE
[        ] > Task :permission_handler:generateDebugAssets UP-TO-DATE
[  +97 ms] > Task :permission_handler:packageDebugAssets UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugShaders UP-TO-DATE
[        ] > Task :shared_preferences:compileDebugShaders UP-TO-DATE
[        ] > Task :shared_preferences:generateDebugAssets UP-TO-DATE
[        ] > Task :shared_preferences:packageDebugAssets UP-TO-DATE
[   +1 ms] > Task :shared_preferences_macos:mergeDebugShaders UP-TO-DATE
[   +1 ms] > Task :shared_preferences_macos:compileDebugShaders UP-TO-DATE
[        ] > Task :shared_preferences_macos:generateDebugAssets UP-TO-DATE
[        ] > Task :shared_preferences_macos:packageDebugAssets UP-TO-DATE
[   +1 ms] > Task :shared_preferences_web:mergeDebugShaders UP-TO-DATE
[   +1 ms] > Task :shared_preferences_web:compileDebugShaders UP-TO-DATE
[  +10 ms] > Task :shared_preferences_web:generateDebugAssets UP-TO-DATE
[        ] > Task :shared_preferences_web:packageDebugAssets UP-TO-DATE
[        ] > Task :sqflite:mergeDebugShaders UP-TO-DATE
[        ] > Task :sqflite:compileDebugShaders UP-TO-DATE
[        ] > Task :sqflite:generateDebugAssets UP-TO-DATE
[        ] > Task :sqflite:packageDebugAssets UP-TO-DATE
[  +79 ms] > Task :app:mergeDebugAssets
[ +999 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE
[ +100 ms] > Task :app:generateDebugResValues UP-TO-DATE
[        ] > Task :app:generateDebugResources UP-TO-DATE
[        ] > Task :app:writeDebugApplicationId UP-TO-DATE
[  +98 ms] > Task :app:processDebugGoogleServices
[        ] Parsing json file: /home/gabriel/Documents/android_studio_projects/casabalo/android/app/google-services.json
[        ] > Task :barcode_scan:generateDebugResValues UP-TO-DATE
[        ] > Task :cloud_firestore:generateDebugResValues UP-TO-DATE
[        ] > Task :barcode_scan:compileDebugRenderscript NO-SOURCE
[        ] > Task :barcode_scan:generateDebugResources UP-TO-DATE
[        ] > Task :barcode_scan:packageDebugResources UP-TO-DATE
[        ] > Task :cloud_firestore:compileDebugRenderscript NO-SOURCE
[        ] > Task :cloud_firestore:generateDebugResources UP-TO-DATE
[        ] > Task :cloud_firestore:packageDebugResources UP-TO-DATE
[        ] > Task :firebase_auth:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_auth:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_auth:generateDebugResources UP-TO-DATE
[  +98 ms] > Task :firebase_auth:packageDebugResources UP-TO-DATE
[        ] > Task :firebase_auth_web:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_auth_web:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_auth_web:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_auth_web:packageDebugResources UP-TO-DATE
[        ] > Task :firebase_core:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_core_web:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_core_web:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_core:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_core:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_core:packageDebugResources UP-TO-DATE
[        ] > Task :firebase_core_web:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_core_web:packageDebugResources UP-TO-DATE
[  +97 ms] > Task :firebase_messaging:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_messaging:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_messaging:packageDebugResources UP-TO-DATE
[        ] > Task :firebase_storage:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_storage:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_storage:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_storage:packageDebugResources UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:generateDebugResValues UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:compileDebugRenderscript NO-SOURCE
[        ] > Task :flutter_keyboard_visibility:generateDebugResources UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:packageDebugResources UP-TO-DATE
[        ] > Task :geolocator:generateDebugResValues UP-TO-DATE
[        ] > Task :geolocator:compileDebugRenderscript NO-SOURCE
[        ] > Task :geolocator:generateDebugResources UP-TO-DATE
[        ] > Task :geolocator:packageDebugResources UP-TO-DATE
[        ] > Task :google_api_availability:generateDebugResValues UP-TO-DATE
[        ] > Task :google_api_availability:compileDebugRenderscript NO-SOURCE
[        ] > Task :google_api_availability:generateDebugResources UP-TO-DATE
[        ] > Task :google_api_availability:packageDebugResources UP-TO-DATE
[        ] > Task :google_maps_flutter:generateDebugResValues UP-TO-DATE
[        ] > Task :google_maps_flutter:compileDebugRenderscript NO-SOURCE
[        ] > Task :google_maps_flutter:generateDebugResources UP-TO-DATE
[        ] > Task :google_maps_flutter:packageDebugResources UP-TO-DATE
[  +98 ms] > Task :location:generateDebugResValues UP-TO-DATE
[        ] > Task :location:compileDebugRenderscript NO-SOURCE
[        ] > Task :location:generateDebugResources UP-TO-DATE
[        ] > Task :location:packageDebugResources UP-TO-DATE
[        ] > Task :location_permissions:generateDebugResValues UP-TO-DATE
[        ] > Task :location_permissions:compileDebugRenderscript NO-SOURCE
[        ] > Task :location_permissions:generateDebugResources UP-TO-DATE
[        ] > Task :location_permissions:packageDebugResources UP-TO-DATE
[        ] > Task :path_provider:generateDebugResValues UP-TO-DATE
[        ] > Task :path_provider:compileDebugRenderscript NO-SOURCE
[        ] > Task :path_provider:generateDebugResources UP-TO-DATE
[        ] > Task :path_provider:packageDebugResources UP-TO-DATE
[        ] > Task :permission_handler:compileDebugRenderscript NO-SOURCE
[        ] > Task :permission_handler:generateDebugResValues UP-TO-DATE
[        ] > Task :permission_handler:generateDebugResources UP-TO-DATE
[        ] > Task :permission_handler:packageDebugResources UP-TO-DATE
[        ] > Task :shared_preferences:compileDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences:generateDebugResValues UP-TO-DATE
[        ] > Task :shared_preferences:generateDebugResources UP-TO-DATE
[        ] > Task :shared_preferences:packageDebugResources UP-TO-DATE
[        ] > Task :shared_preferences_macos:compileDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_macos:generateDebugResValues UP-TO-DATE
[        ] > Task :shared_preferences_macos:generateDebugResources UP-TO-DATE
[   +3 ms] > Task :shared_preferences_macos:packageDebugResources UP-TO-DATE
[        ] > Task :shared_preferences_web:generateDebugResValues UP-TO-DATE
[        ] > Task :shared_preferences_web:compileDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_web:generateDebugResources UP-TO-DATE
[        ] > Task :shared_preferences_web:packageDebugResources UP-TO-DATE
[   +3 ms] > Task :sqflite:generateDebugResValues UP-TO-DATE
[        ] > Task :sqflite:compileDebugRenderscript NO-SOURCE
[        ] > Task :sqflite:generateDebugResources UP-TO-DATE
[        ] > Task :sqflite:packageDebugResources UP-TO-DATE
[ +190 ms] > Task :app:mergeDebugResources UP-TO-DATE
[  +97 ms] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[        ] > Task :barcode_scan:checkDebugManifest UP-TO-DATE
[        ] > Task :barcode_scan:processDebugManifest UP-TO-DATE
[        ] > Task :cloud_firestore:checkDebugManifest UP-TO-DATE
[  +99 ms] > Task :cloud_firestore:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_auth:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_auth:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_auth_web:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_auth_web:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_core:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_core:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_core_web:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_core_web:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_messaging:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_messaging:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_storage:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_storage:processDebugManifest UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:checkDebugManifest UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:processDebugManifest UP-TO-DATE
[        ] > Task :geolocator:checkDebugManifest UP-TO-DATE
[        ] > Task :geolocator:processDebugManifest UP-TO-DATE
[        ] > Task :google_api_availability:checkDebugManifest UP-TO-DATE
[        ] > Task :google_api_availability:processDebugManifest UP-TO-DATE
[        ] > Task :google_maps_flutter:checkDebugManifest UP-TO-DATE
[  +97 ms] > Task :google_maps_flutter:processDebugManifest UP-TO-DATE
[        ] > Task :location:checkDebugManifest UP-TO-DATE
[        ] > Task :location:processDebugManifest UP-TO-DATE
[        ] > Task :location_permissions:checkDebugManifest UP-TO-DATE
[        ] > Task :location_permissions:processDebugManifest UP-TO-DATE
[        ] > Task :path_provider:checkDebugManifest UP-TO-DATE
[        ] > Task :path_provider:processDebugManifest UP-TO-DATE
[        ] > Task :permission_handler:checkDebugManifest UP-TO-DATE
[        ] > Task :permission_handler:processDebugManifest UP-TO-DATE
[        ] > Task :shared_preferences:checkDebugManifest UP-TO-DATE
[        ] > Task :shared_preferences:processDebugManifest UP-TO-DATE
[        ] > Task :shared_preferences_macos:checkDebugManifest UP-TO-DATE
[        ] > Task :shared_preferences_macos:processDebugManifest UP-TO-DATE
[        ] > Task :shared_preferences_web:checkDebugManifest UP-TO-DATE
[        ] > Task :shared_preferences_web:processDebugManifest UP-TO-DATE
[        ] > Task :sqflite:checkDebugManifest UP-TO-DATE
[        ] > Task :sqflite:processDebugManifest UP-TO-DATE
[  +98 ms] > Task :app:processDebugManifest UP-TO-DATE
[        ] > Task :barcode_scan:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :barcode_scan:generateDebugRFile UP-TO-DATE
[        ] > Task :cloud_firestore:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_core:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_core_web:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_core_web:generateDebugRFile UP-TO-DATE
[        ] > Task :firebase_auth:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_auth_web:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_core:generateDebugRFile UP-TO-DATE
[        ] > Task :cloud_firestore:generateDebugRFile UP-TO-DATE
[        ] > Task :firebase_auth_web:generateDebugRFile UP-TO-DATE
[        ] > Task :firebase_auth:generateDebugRFile UP-TO-DATE
[        ] > Task :firebase_messaging:parseDebugLibraryResources UP-TO-DATE
[  +98 ms] > Task :firebase_storage:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugRFile UP-TO-DATE
[        ] > Task :firebase_storage:generateDebugRFile UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:generateDebugRFile UP-TO-DATE
[        ] > Task :geolocator:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :google_api_availability:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :google_api_availability:generateDebugRFile UP-TO-DATE
[        ] > Task :location_permissions:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :location_permissions:generateDebugRFile UP-TO-DATE
[  +99 ms] > Task :geolocator:generateDebugRFile UP-TO-DATE
[        ] > Task :google_maps_flutter:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :google_maps_flutter:generateDebugRFile UP-TO-DATE
[        ] > Task :location:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :path_provider:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :location:generateDebugRFile UP-TO-DATE
[        ] > Task :path_provider:generateDebugRFile UP-TO-DATE
[        ] > Task :permission_handler:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :permission_handler:generateDebugRFile UP-TO-DATE
[        ] > Task :shared_preferences:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :shared_preferences_macos:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :shared_preferences_macos:generateDebugRFile UP-TO-DATE
[        ] > Task :shared_preferences_web:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :shared_preferences_web:generateDebugRFile UP-TO-DATE
[        ] > Task :shared_preferences:generateDebugRFile UP-TO-DATE
[        ] > Task :sqflite:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :sqflite:generateDebugRFile UP-TO-DATE
[  +97 ms] > Task :app:processDebugResources UP-TO-DATE
[        ] > Task :barcode_scan:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :cloud_firestore:generateDebugBuildConfig UP-TO-DATE
[+1699 ms] > Task :barcode_scan:compileDebugKotlin UP-TO-DATE
[        ] > Task :barcode_scan:javaPreCompileDebug UP-TO-DATE
[        ] > Task :barcode_scan:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :barcode_scan:bundleLibCompileDebug UP-TO-DATE
[   +2 ms] > Task :firebase_core:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_core_web:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_core_web:javaPreCompileDebug UP-TO-DATE
[ +101 ms] > Task :firebase_core_web:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_core_web:bundleLibCompileDebug UP-TO-DATE
[   +4 ms] > Task :firebase_core:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_core:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_core:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :cloud_firestore:javaPreCompileDebug UP-TO-DATE
[        ] > Task :cloud_firestore:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :cloud_firestore:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :firebase_auth:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_auth_web:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_auth_web:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_auth_web:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :firebase_auth:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_auth:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_auth:bundleLibCompileDebug UP-TO-DATE
[  +89 ms] > Task :firebase_messaging:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_messaging:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_messaging:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :firebase_storage:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_storage:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_storage:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_storage:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:javaPreCompileDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :geolocator:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :google_api_availability:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :google_api_availability:javaPreCompileDebug UP-TO-DATE
[  +95 ms] > Task :google_api_availability:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :google_api_availability:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :location_permissions:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :location_permissions:javaPreCompileDebug UP-TO-DATE
[        ] > Task :location_permissions:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :location_permissions:bundleLibCompileDebug UP-TO-DATE
[  +99 ms] > Task :geolocator:javaPreCompileDebug UP-TO-DATE
[        ] > Task :geolocator:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :geolocator:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :google_maps_flutter:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :location:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :google_maps_flutter:javaPreCompileDebug UP-TO-DATE
[  +98 ms] > Task :google_maps_flutter:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :google_maps_flutter:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :location:javaPreCompileDebug UP-TO-DATE
[        ] > Task :location:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :location:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :path_provider:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :path_provider:javaPreCompileDebug UP-TO-DATE
[        ] > Task :path_provider:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :path_provider:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :permission_handler:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :permission_handler:javaPreCompileDebug UP-TO-DATE
[        ] > Task :permission_handler:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :permission_handler:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :shared_preferences:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :shared_preferences_macos:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :shared_preferences_macos:javaPreCompileDebug UP-TO-DATE
[  +99 ms] > Task :shared_preferences_macos:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :shared_preferences_macos:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :shared_preferences_web:javaPreCompileDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :shared_preferences_web:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :shared_preferences:javaPreCompileDebug UP-TO-DATE
[        ] > Task :shared_preferences:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :shared_preferences:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :sqflite:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :sqflite:javaPreCompileDebug UP-TO-DATE
[        ] > Task :sqflite:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :sqflite:bundleLibCompileDebug UP-TO-DATE
[  +97 ms] > Task :app:compileDebugKotlin UP-TO-DATE
[        ] > Task :app:javaPreCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :app:compileDebugSources UP-TO-DATE
[ +199 ms] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :barcode_scan:processDebugJavaRes NO-SOURCE
[        ] > Task :barcode_scan:bundleLibResDebug UP-TO-DATE
[        ] > Task :cloud_firestore:processDebugJavaRes NO-SOURCE
[        ] > Task :cloud_firestore:bundleLibResDebug UP-TO-DATE
[  +99 ms] > Task :firebase_auth:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_auth:bundleLibResDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_auth_web:bundleLibResDebug UP-TO-DATE
[        ] > Task :firebase_core:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_core:bundleLibResDebug UP-TO-DATE
[        ] > Task :firebase_core_web:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_core_web:bundleLibResDebug UP-TO-DATE
[        ] > Task :firebase_messaging:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_messaging:bundleLibResDebug UP-TO-DATE
[        ] > Task :firebase_storage:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_storage:bundleLibResDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:processDebugJavaRes NO-SOURCE
[        ] > Task :flutter_keyboard_visibility:bundleLibResDebug UP-TO-DATE
[        ] > Task :geolocator:processDebugJavaRes NO-SOURCE
[        ] > Task :geolocator:bundleLibResDebug UP-TO-DATE
[        ] > Task :google_api_availability:processDebugJavaRes NO-SOURCE
[        ] > Task :google_api_availability:bundleLibResDebug UP-TO-DATE
[  +98 ms] > Task :google_maps_flutter:processDebugJavaRes NO-SOURCE
[        ] > Task :google_maps_flutter:bundleLibResDebug UP-TO-DATE
[        ] > Task :location:processDebugJavaRes NO-SOURCE
[        ] > Task :location:bundleLibResDebug UP-TO-DATE
[        ] > Task :location_permissions:processDebugJavaRes NO-SOURCE
[        ] > Task :location_permissions:bundleLibResDebug UP-TO-DATE
[        ] > Task :path_provider:processDebugJavaRes NO-SOURCE
[        ] > Task :path_provider:bundleLibResDebug UP-TO-DATE
[        ] > Task :permission_handler:processDebugJavaRes NO-SOURCE
[        ] > Task :permission_handler:bundleLibResDebug UP-TO-DATE
[        ] > Task :shared_preferences:processDebugJavaRes NO-SOURCE
[        ] > Task :shared_preferences:bundleLibResDebug UP-TO-DATE
[        ] > Task :shared_preferences_macos:processDebugJavaRes NO-SOURCE
[        ] > Task :shared_preferences_macos:bundleLibResDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:processDebugJavaRes NO-SOURCE
[        ] > Task :shared_preferences_web:bundleLibResDebug UP-TO-DATE
[        ] > Task :sqflite:processDebugJavaRes NO-SOURCE
[        ] > Task :sqflite:bundleLibResDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[ +498 ms] > Task :path_provider:bundleLibRuntimeDebug UP-TO-DATE
[  +99 ms] > Task :sqflite:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :location_permissions:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :shared_preferences_macos:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_messaging:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :shared_preferences:bundleLibRuntimeDebug UP-TO-DATE
[  +99 ms] > Task :google_maps_flutter:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :permission_handler:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :barcode_scan:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_core_web:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_core:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_storage:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_auth:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :google_api_availability:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :geolocator:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :cloud_firestore:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :location:bundleLibRuntimeDebug UP-TO-DATE
[  +98 ms] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[ +300 ms] > Task :app:multiDexListDebug UP-TO-DATE
[        ] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[  +99 ms] > Task :app:mergeDexDebug UP-TO-DATE
[        ] > Task :app:validateSigningDebug UP-TO-DATE
[        ] > Task :app:signingConfigWriterDebug UP-TO-DATE
[ +100 ms] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :barcode_scan:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :barcode_scan:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :barcode_scan:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :barcode_scan:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :cloud_firestore:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :cloud_firestore:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :cloud_firestore:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :cloud_firestore:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_auth:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_auth:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_auth:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :firebase_auth:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_auth_web:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_auth_web:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :firebase_auth_web:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_core:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_core:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_core:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :firebase_core:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_core_web:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_core_web:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_core_web:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :firebase_core_web:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugJniLibFolders UP-TO-DATE
[  +97 ms] > Task :firebase_messaging:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_messaging:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :firebase_messaging:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_storage:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_storage:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_storage:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :firebase_storage:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :geolocator:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :geolocator:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :geolocator:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :geolocator:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :google_api_availability:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :google_api_availability:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :google_api_availability:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :google_api_availability:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :google_maps_flutter:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :google_maps_flutter:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :google_maps_flutter:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :google_maps_flutter:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :location:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :location:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :location:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :location:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[  +97 ms] > Task :location_permissions:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :location_permissions:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :location_permissions:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :path_provider:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :path_provider:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :path_provider:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :path_provider:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :permission_handler:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :permission_handler:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :permission_handler:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :permission_handler:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :shared_preferences:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :shared_preferences:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :shared_preferences_macos:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :shared_preferences_macos:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :shared_preferences_web:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :shared_preferences_web:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :sqflite:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :sqflite:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :sqflite:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :sqflite:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[  +96 ms] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[        ] Compatible side by side NDK version was not found.
[        ] > Task :app:packageDebug UP-TO-DATE
[        ] > Task :app:assembleDebug UP-TO-DATE
[  +98 ms] > Task :barcode_scan:extractDebugAnnotations UP-TO-DATE
[        ] > Task :barcode_scan:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :barcode_scan:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :barcode_scan:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :barcode_scan:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :barcode_scan:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :barcode_scan:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :barcode_scan:bundleDebugAar UP-TO-DATE
[        ] > Task :barcode_scan:compileDebugSources UP-TO-DATE
[        ] > Task :barcode_scan:assembleDebug UP-TO-DATE
[        ] > Task :cloud_firestore:extractDebugAnnotations UP-TO-DATE
[        ] > Task :cloud_firestore:mergeDebugGeneratedProguardFiles UP-TO-DATE
[  +99 ms] > Task :cloud_firestore:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :cloud_firestore:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :cloud_firestore:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :cloud_firestore:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :cloud_firestore:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :cloud_firestore:bundleDebugAar UP-TO-DATE
[        ] > Task :cloud_firestore:compileDebugSources UP-TO-DATE
[        ] > Task :cloud_firestore:assembleDebug UP-TO-DATE
[        ] > Task :firebase_auth:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_auth:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_auth:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_auth:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_auth:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_auth:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :firebase_auth:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_auth:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_auth:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_auth:assembleDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_auth_web:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_auth_web:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_auth_web:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_auth_web:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_auth_web:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_auth_web:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_auth_web:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_auth_web:assembleDebug UP-TO-DATE
[        ] > Task :firebase_core:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_core:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_core:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_core:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_core:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_core:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :firebase_core:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_core:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_core:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_core:assembleDebug UP-TO-DATE
[        ] > Task :firebase_core_web:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_core_web:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_core_web:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_core_web:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_core_web:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_core_web:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :firebase_core_web:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_core_web:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_core_web:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_core_web:assembleDebug UP-TO-DATE
[  +94 ms] > Task :firebase_messaging:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_messaging:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_messaging:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :firebase_messaging:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_messaging:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_messaging:assembleDebug UP-TO-DATE
[        ] > Task :firebase_storage:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_storage:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_storage:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_storage:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_storage:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_storage:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :firebase_storage:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :firebase_storage:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_storage:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_storage:assembleDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:extractDebugAnnotations UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:bundleDebugAar UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:compileDebugSources UP-TO-DATE
[        ] > Task :flutter_keyboard_visibility:assembleDebug UP-TO-DATE
[  +97 ms] > Task :geolocator:extractDebugAnnotations UP-TO-DATE
[        ] > Task :geolocator:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :geolocator:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :geolocator:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :geolocator:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :geolocator:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :geolocator:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :geolocator:bundleDebugAar UP-TO-DATE
[        ] > Task :geolocator:compileDebugSources UP-TO-DATE
[        ] > Task :geolocator:assembleDebug UP-TO-DATE
[        ] > Task :google_api_availability:extractDebugAnnotations UP-TO-DATE
[        ] > Task :google_api_availability:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :google_api_availability:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :google_api_availability:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :google_api_availability:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :google_api_availability:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :google_api_availability:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :google_api_availability:bundleDebugAar UP-TO-DATE
[        ] > Task :google_api_availability:compileDebugSources UP-TO-DATE
[        ] > Task :google_api_availability:assembleDebug UP-TO-DATE
[        ] > Task :google_maps_flutter:extractDebugAnnotations UP-TO-DATE
[        ] > Task :google_maps_flutter:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :google_maps_flutter:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :google_maps_flutter:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :google_maps_flutter:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :google_maps_flutter:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :google_maps_flutter:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :google_maps_flutter:bundleDebugAar UP-TO-DATE
[        ] > Task :google_maps_flutter:compileDebugSources UP-TO-DATE
[        ] > Task :google_maps_flutter:assembleDebug UP-TO-DATE
[  +97 ms] > Task :location:extractDebugAnnotations UP-TO-DATE
[        ] > Task :location:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :location:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :location:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :location:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :location:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :location:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :location:bundleDebugAar UP-TO-DATE
[        ] > Task :location:compileDebugSources UP-TO-DATE
[        ] > Task :location:assembleDebug UP-TO-DATE
[        ] > Task :location_permissions:extractDebugAnnotations UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :location_permissions:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :location_permissions:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :location_permissions:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :location_permissions:bundleDebugAar UP-TO-DATE
[        ] > Task :location_permissions:compileDebugSources UP-TO-DATE
[        ] > Task :location_permissions:assembleDebug UP-TO-DATE
[        ] > Task :path_provider:extractDebugAnnotations UP-TO-DATE
[        ] > Task :path_provider:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :path_provider:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :path_provider:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :path_provider:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :path_provider:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :path_provider:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :path_provider:bundleDebugAar UP-TO-DATE
[        ] > Task :path_provider:compileDebugSources UP-TO-DATE
[        ] > Task :path_provider:assembleDebug UP-TO-DATE
[        ] > Task :permission_handler:extractDebugAnnotations UP-TO-DATE
[        ] > Task :permission_handler:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :permission_handler:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :permission_handler:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :permission_handler:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :permission_handler:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :permission_handler:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :permission_handler:bundleDebugAar UP-TO-DATE
[        ] > Task :permission_handler:compileDebugSources UP-TO-DATE
[        ] > Task :permission_handler:assembleDebug UP-TO-DATE
[        ] > Task :shared_preferences:extractDebugAnnotations UP-TO-DATE
[  +95 ms] > Task :shared_preferences:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :shared_preferences:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :shared_preferences:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :shared_preferences:bundleDebugAar UP-TO-DATE
[        ] > Task :shared_preferences:compileDebugSources UP-TO-DATE
[        ] > Task :shared_preferences:assembleDebug UP-TO-DATE
[        ] > Task :shared_preferences_macos:extractDebugAnnotations UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_macos:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :shared_preferences_macos:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :shared_preferences_macos:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :shared_preferences_macos:bundleDebugAar UP-TO-DATE
[        ] > Task :shared_preferences_macos:compileDebugSources UP-TO-DATE
[        ] > Task :shared_preferences_macos:assembleDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:extractDebugAnnotations UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_web:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :shared_preferences_web:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :shared_preferences_web:bundleDebugAar UP-TO-DATE
[        ] > Task :shared_preferences_web:compileDebugSources UP-TO-DATE
[        ] > Task :shared_preferences_web:assembleDebug UP-TO-DATE
[        ] > Task :sqflite:extractDebugAnnotations UP-TO-DATE
[        ] > Task :sqflite:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :sqflite:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :sqflite:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :sqflite:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :sqflite:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :sqflite:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :sqflite:bundleDebugAar UP-TO-DATE
[        ] > Task :sqflite:compileDebugSources UP-TO-DATE
[        ] > Task :sqflite:assembleDebug UP-TO-DATE
[  +97 ms] BUILD SUCCESSFUL in 50s
[        ] 573 actionable tasks: 4 executed, 569 up-to-date
[ +404 ms] Running Gradle task 'assembleDebug'... (completed in 50.6s)
[+1422 ms] calculateSha: LocalDirectory: '/home/gabriel/Documents/android_studio_projects/casabalo/build/app/outputs/apk'/app.apk
[ +141 ms] calculateSha: reading file took 139us
[+1029 ms] calculateSha: computing sha took 1028us
[  +11 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk.
[  +10 ms] executing: /home/gabriel/Android/Sdk/build-tools/29.0.2/aapt dump xmltree /home/gabriel/Documents/android_studio_projects/casabalo/build/app/outputs/apk/app.apk AndroidManifest.xml
[  +22 ms] Exit code 0 from: /home/gabriel/Android/Sdk/build-tools/29.0.2/aapt dump xmltree /home/gabriel/Documents/android_studio_projects/casabalo/build/app/outputs/apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="it.resmedia.casabalo" (Raw: "it.resmedia.casabalo")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: uses-permission (line=15)
                 A: android:name(0x01010003)="android.permission.CAMERA" (Raw: "android.permission.CAMERA")
               E: uses-permission (line=16)
                 A: android:name(0x01010003)="android.permission.ACCESS_FINE_LOCATION" (Raw: "android.permission.ACCESS_FINE_LOCATION")
               E: uses-permission (line=17)
                 A: android:name(0x01010003)="android.permission.ACCESS_COARSE_LOCATION" (Raw: "android.permission.ACCESS_COARSE_LOCATION")
               E: uses-permission (line=18)
                 A: android:name(0x01010003)="android.permission.READ_EXTERNAL_STORAGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
               E: uses-permission (line=19)
                 A: android:name(0x01010003)="android.permission.WRITE_EXTERNAL_STORAGE" (Raw: "android.permission.WRITE_EXTERNAL_STORAGE")
               E: uses-permission (line=20)
                 A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
               E: uses-permission (line=21)
                 A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
               E: uses-permission (line=23)
                 A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
               E: uses-feature (line=25)
                 A: android:glEsVersion(0x01010281)=(type 0x11)0x20000
                 A: android:required(0x0101028e)=(type 0x12)0xffffffff
               E: uses-permission (line=29)
                 A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
               E: application (line=37)
                 A: android:label(0x01010001)="casabalo" (Raw: "casabalo")
                 A: android:icon(0x01010002)=@0x7f0c0000
                 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=43)
                   A: android:theme(0x01010000)=@0x7f0e00c5
                   A: android:name(0x01010003)="it.resmedia.casabalo.MainActivity" (Raw: "it.resmedia.casabalo.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x400037b4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=57)
                     A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame")
                     A: android:value(0x01010024)=(type 0x12)0xffffffff
                   E: meta-data (line=60)
                     A: android:name(0x01010003)="com.google.firebase.messaging.default_notification_channel_id" (Raw: "com.google.firebase.messaging.default_notification_channel_id")
                     A: android:value(0x01010024)=@0x7f0d003d
                   E: intent-filter (line=64)
                     E: action (line=65)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=67)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                   E: intent-filter (line=69)
                     E: action (line=70)
                       A: android:name(0x01010003)="FLUTTER_NOTIFICATION_CLICK" (Raw: "FLUTTER_NOTIFICATION_CLICK")
                     E: category (line=72)
                       A: android:name(0x01010003)="android.intent.category.DEFAULT" (Raw: "android.intent.category.DEFAULT")
                 E: activity (line=75)
                   A: android:name(0x01010003)="com.apptreesoftware.barcodescan.BarcodeScannerActivity" (Raw: "com.apptreesoftware.barcodescan.BarcodeScannerActivity")
                 E: meta-data (line=77)
                   A: android:name(0x01010003)="com.google.android.geo.API_KEY" (Raw: "com.google.android.geo.API_KEY")
                   A: android:value(0x01010024)="AIzaSyBTCl3nl5Vs3BIKp0JinUkR7fwsTMwUWxQ" (Raw: "AIzaSyBTCl3nl5Vs3BIKp0JinUkR7fwsTMwUWxQ")
                 E: service (line=81)
                   A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
                   E: meta-data (line=85)
                     A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.cloudfirestore.FlutterFirebaseAppRegistrar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebase.cloudfirestore.FlutterFirebaseAppRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=88)
                     A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebaseauth.FlutterFirebaseAppRegistrar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebaseauth.FlutterFirebaseAppRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=91)
                     A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.storage.FlutterFirebaseAppRegistrar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebase.storage.FlutterFirebaseAppRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=94)
                     A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseAppRegistrar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseAppRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=97)
                     A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebasemessaging.FlutterFirebaseAppRegistrar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebasemessaging.FlutterFirebaseAppRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=100)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=103)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.storage.StorageRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.storage.StorageRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=106)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=109)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.messaging.FirebaseMessagingRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.messaging.FirebaseMessagingRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=112)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.datatransport.TransportRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.datatransport.TransportRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=115)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=118)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
                 E: service (line=122)
                   A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
                   E: intent-filter (line=123)
                     E: action (line=124)
                       A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
                 E: activity (line=128)
                   A: android:theme(0x01010000)=@0x01030010
                   A: android:name(0x01010003)="com.google.firebase.auth.internal.FederatedSignInActivity" (Raw: "com.google.firebase.auth.internal.FederatedSignInActivity")
                   A: android:permission(0x01010006)="com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN" (Raw: "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
                   A: android:launchMode(0x0101001d)=(type 0x10)0x2
                 E: service (line=139)
                   A: android:name(0x01010003)="com.google.firebase.messaging.FirebaseMessagingService" (Raw: "com.google.firebase.messaging.FirebaseMessagingService")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: intent-filter (line=142)
                     A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
                     E: action (line=143)
                       A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
                 E: receiver (line=147)
                   A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
                   A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   E: intent-filter (line=151)
                     E: action (line=152)
                       A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
                 E: provider (line=156)
                   A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:authorities(0x01010018)="it.resmedia.casabalo.firebaseinitprovider" (Raw: "it.resmedia.casabalo.firebaseinitprovider")
                   A: android:initOrder(0x0101001a)=(type 0x10)0x64
                 E: uses-library (line=161)
                   A: android:name(0x01010003)="org.apache.http.legacy" (Raw: "org.apache.http.legacy")
                   A: android:required(0x0101028e)=(type 0x12)0x0
                 E: activity (line=165)
                   A: android:theme(0x01010000)=@0x01030010
                   A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=170)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=175)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
                   A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   E: intent-filter (line=180)
                     E: action (line=181)
                       A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
                 E: service (line=185)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: service (line=189)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
                   A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: meta-data (line=195)
                   A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
                   A: android:value(0x01010024)=@0x7f090008
                 E: service (line=199)
                   A: android:name(0x01010003)="com.google.android.datatransport.runtime.backends.TransportBackendDiscovery" (Raw: "com.google.android.datatransport.runtime.backends.TransportBackendDiscovery")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: meta-data (line=202)
                     A: android:name(0x01010003)="backend:com.google.android.datatransport.cct.CctBackendFactory" (Raw: "backend:com.google.android.datatransport.cct.CctBackendFactory")
                     A: android:value(0x01010024)="cct" (Raw: "cct")
                 E: service (line=206)
                   A: android:name(0x01010003)="com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService" (Raw:
                   "com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService")
                   A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=212)
                   A: android:name(0x01010003)="com.google.android.datatransport.runtime.scheduling.jobscheduling.AlarmManagerSchedulerBroadcastReceiver" (Raw:
                   "com.google.android.datatransport.runtime.scheduling.jobscheduling.AlarmManagerSchedulerBroadcastReceiver")
                   A: android:exported(0x01010010)=(type 0x12)0x0
[   +9 ms] Stopping app 'app.apk' on ONEPLUS A3003.
[        ] executing: /home/gabriel/Android/Sdk/platform-tools/adb -s 73c2cc6e shell am force-stop it.resmedia.casabalo
[ +174 ms] executing: /home/gabriel/Android/Sdk/platform-tools/adb -s 73c2cc6e shell pm list packages it.resmedia.casabalo
[  +99 ms] package:it.resmedia.casabalo
[  +10 ms] executing: /home/gabriel/Android/Sdk/platform-tools/adb -s 73c2cc6e shell cat /data/local/tmp/sky.it.resmedia.casabalo.sha1
[  +81 ms] bb856decaa71173dcd831903eab6bc538af85de1
[   +1 ms] Latest build already installed.
[   +1 ms] ONEPLUS A3003 startApp
[   +8 ms] executing: /home/gabriel/Android/Sdk/platform-tools/adb -s 73c2cc6e shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez
enable-checked-mode true --ez verify-entry-points true it.resmedia.casabalo/it.resmedia.casabalo.MainActivity
[ +133 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=it.resmedia.casabalo/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[+1437 ms] Observatory URL on device: http://127.0.0.1:40359/s1M5bB5zmbI=/
[   +3 ms] executing: /home/gabriel/Android/Sdk/platform-tools/adb -s 73c2cc6e forward tcp:0 tcp:40359
[  +24 ms] 34263
[   +1 ms] Forwarded host port 34263 to device port 40359 for Observatory
[  +22 ms] Connecting to service protocol: http://127.0.0.1:34263/s1M5bB5zmbI=/
[  +52 ms] I/flutter (30185): true
[ +427 ms] Successfully connected to service protocol: http://127.0.0.1:34263/s1M5bB5zmbI=/
[   +8 ms] Sending to VM service: getVM({})
[  +20 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Qualcomm Technologies, Inc MSM8996, operatingSystem: android, targetCPU: arm64, version: 2.7.0 (Mon Dec 2 20:10:59 2019 +0100) on "android_arm64",
_profilerMode: VM, _nativeZoneMemoryUsage: 0, pi...
[   +7 ms] Sending to VM service: getIsolate({isolateId: isolates/3141400366378779})
[   +4 ms] Sending to VM service: _flutter.listViews({})
[   +8 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x74b764f620, isolate: {type: @Isolate, fixedId: true, id: isolates/3141400366378779, name: main.dart$main-3141400366378779, number:
3141400366378779}}]}
[   +4 ms] DevFS: Creating new filesystem on the device (null)
[   +1 ms] Sending to VM service: _createDevFS({fsName: casabalo})
[ +102 ms] Result: {type: Isolate, id: isolates/3141400366378779, name: main, number: 3141400366378779, _originNumber: 3141400366378779, startTime: 1579469104816, _heaps: {new: {type: HeapSpace, name: new, vmName:
Scavenger, collections: 0, avgCollectionPeriodMillis...
[  +22 ms] Result: {type: FileSystem, name: casabalo, uri: file:///data/user/0/it.resmedia.casabalo/code_cache/casabaloMELPCF/casabalo/}
[        ] DevFS: Created new filesystem on the device (file:///data/user/0/it.resmedia.casabalo/code_cache/casabaloMELPCF/casabalo/)
[   +2 ms] Updating assets
[ +439 ms] Syncing files to device ONEPLUS A3003...
[   +1 ms] Scanning asset files
[   +3 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +7 ms] /home/gabriel/Documents/flutter/bin/cache/dart-sdk/bin/dart /home/gabriel/Documents/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.snapshot --sdk-root
/home/gabriel/Documents/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter -Ddart.developer.causal_async_stacks=true --output-dill /tmp/flutter_tool.ZIDUVN/app.dill --packages
/home/gabriel/Documents/android_studio_projects/casabalo/.packages -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme
org-dartlang-root
[  +12 ms] <- compile package:casabalo/main.dart
[+10880 ms] Updating files
[ +566 ms] DevFS: Sync finished
[   +1 ms] Syncing files to device ONEPLUS A3003... (completed in 11,471ms, longer than expected)
[        ] Synced 3.7MB.
[   +1 ms] Sending to VM service: _flutter.listViews({})
[   +5 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x74b764f620, isolate: {type: @Isolate, fixedId: true, id: isolates/3141400366378779, name: main.dart$main-3141400366378779, number:
3141400366378779}}]}
[        ] <- accept
[        ] Connected to _flutterView/0x74b764f620.
[   +1 ms] 🔥  To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[        ] An Observatory debugger and profiler on ONEPLUS A3003 is available at: http://127.0.0.1:34263/s1M5bB5zmbI=/
[        ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".
[+5895 ms] I/flutter (30185): onMessage: {notification: {title: OKKKKKKasd, body: At least I tried}, data: {body: At least I tried, from data, title: Title from data, click_action: FLUTTER_NOTIFICATION_CLICK}}
[   +4 ms] I/flutter (30185): Instance of 'NotificationModel'


(base) gabriel@gabriel-Lenovo-ideapad-500S-13ISK:~/Documents/android_studio_projects/casabalo$ flutter analyze
Analyzing casabalo...                                                   

   info • Unused import: 'dart:convert' • lib/blocs/notifications/notifications_state.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' •
          lib/blocs/notifications/notifications_state.dart:5:8 • unused_import
   info • Unused import: 'package:built_value/serializer.dart' •
          lib/blocs/notifications/notifications_state.dart:7:8 • unused_import
   info • Unused import: 'dart:convert' • lib/blocs/rankers/rankers_state.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' •
          lib/blocs/rankers/rankers_state.dart:5:8 • unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/blocs/rankers/rankers_state.dart:7:8 •
          unused_import
   info • The value of the local variable '_db' isn't used • lib/blocs/start/start_bloc.dart:52:21 •
          unused_local_variable
warning • The parameter 'context' is required.  • lib/blocs/start/start_bloc.dart:67:9 •
       missing_required_param
   info • Unused import: 'dart:convert' • lib/blocs/start/start_state.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' •
          lib/blocs/start/start_state.dart:5:8 • unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/blocs/start/start_state.dart:7:8 •
          unused_import
   info • Unused import: 'dart:convert' • lib/blocs/structures/structures_state.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' •
          lib/blocs/structures/structures_state.dart:5:8 • unused_import
   info • Unused import: 'package:built_value/serializer.dart' •
          lib/blocs/structures/structures_state.dart:7:8 • unused_import
   info • Name non-constant identifiers using lowerCamelCase • lib/const.dart:6:8 •
          non_constant_identifier_names
   info • Name non-constant identifiers using lowerCamelCase • lib/const.dart:12:8 •
          non_constant_identifier_names
   info • Unused import: 'package:casabalo/models/user.dart' • lib/generator/puntivendita_generator.dart:5:8 •
          unused_import
   info • Unused import: 'package:google_maps_flutter/google_maps_flutter.dart' •
          lib/generator/puntivendita_generator.dart:11:8 • unused_import
   info • The value of the field '_avatars' isn't used • lib/generator/puntivendita_generator.dart:14:16 •
          unused_field
   info • The value of the local variable 'permissions' isn't used •
          lib/generator/puntivendita_generator.dart:99:44 • unused_local_variable
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: Intro.callback • lib/interface/intro/intro.dart:9:7 •
          must_be_immutable
   info • Unused import: 'package:flutter_sliding_tutorial/flutter_sliding_tutorial.dart' •
          lib/interface/intro/sliding_tutorial.dart:4:8 • unused_import
   info • The value of the local variable '_colors' isn't used •
          lib/interface/intro/sliding_tutorial.dart:29:17 • unused_local_variable
   info • Unused import: 'package:cached_network_image/cached_network_image.dart' •
          lib/interface/pages/structure_list_page.dart:2:8 • unused_import
   info • The value of the field '_indexViewed' isn't used • lib/interface/pages/structure_list_page.dart:34:7
          • unused_field
   info • Avoid using braces in interpolation when not needed •
          lib/interface/pages/structure_list_page.dart:243:26 • unnecessary_brace_in_string_interps
   info • Unused import: 'package:sliding_panel/sliding_panel.dart' •
          lib/interface/pages/structures_page.dart:6:8 • unused_import
   info • The declaration '_getPos' isn't referenced • lib/interface/pages/structures_page.dart:29:10 •
          unused_element
   info • Unused import: 'package:casabalo/interface/pages/pages.dart' •
          lib/interface/screens/home_screen.dart:2:8 • unused_import
   info • Unused import: 'package:casabalo/utility/database_helpers.dart' •
          lib/interface/screens/loading_screen.dart:3:8 • unused_import
   info • Unused import: 'package:casabalo/utility/root.dart' • lib/interface/screens/loading_screen.dart:4:8
          • unused_import
   info • Unused import: 'package:shared_preferences/shared_preferences.dart' •
          lib/interface/screens/loading_screen.dart:7:8 • unused_import
   info • The value of the field '_db' isn't used • lib/interface/screens/notification_screen.dart:11:19 •
          unused_field
   info • Avoid using braces in interpolation when not needed •
          lib/interface/screens/notification_screen.dart:17:25 • unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed •
          lib/interface/screens/notification_screen.dart:21:24 • unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed •
          lib/interface/screens/notification_screen.dart:24:24 • unnecessary_brace_in_string_interps
   info • Unused import: 'package:casabalo/modified_plugins/barcode_110/barcode_flutter.dart' •
          lib/interface/screens/pre_home_screen.dart:4:8 • unused_import
   info • Unused import: 'package:casabalo/utility/database_helpers.dart' •
          lib/interface/screens/pre_home_screen.dart:6:8 • unused_import
   info • Unused import: 'package:casabalo/utility/methods.dart' •
          lib/interface/screens/pre_home_screen.dart:7:8 • unused_import
   info • Unused import: 'package:casabalo/const.dart' • lib/interface/screens/pre_home_screen.dart:9:8 •
          unused_import
   info • Unused import: 'package:font_awesome_flutter/font_awesome_flutter.dart' •
          lib/interface/screens/pre_home_screen.dart:12:8 • unused_import
   info • Unused import: 'package:rflutter_alert/rflutter_alert.dart' •
          lib/interface/screens/pre_home_screen.dart:13:8 • unused_import
   info • The value of the field '_alreadyValidated' isn't used • lib/interface/screens/sign_screen.dart:19:8
          • unused_field
   info • The value of the field '_email' isn't used • lib/interface/screens/sign_screen.dart:23:10 •
          unused_field
   info • The value of the field '_password' isn't used • lib/interface/screens/sign_screen.dart:23:18 •
          unused_field
   info • Avoid using braces in interpolation when not needed • lib/interface/screens/sign_screen.dart:73:62 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/interface/screens/sign_screen.dart:168:27
          • unnecessary_brace_in_string_interps
   info • Name non-constant identifiers using lowerCamelCase • lib/interface/screens/sign_screen.dart:768:3 •
          non_constant_identifier_names
   info • The declaration '_ContainerLoading' isn't referenced • lib/interface/screens/sign_screen.dart:768:3
          • unused_element
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: BuildRanker.user • lib/interface/widgets/buildranker.dart:7:7 •
          must_be_immutable
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: CustomAppBar.notifications, CustomAppBar.leading,
          CustomAppBar.controller, CustomAppBar.logo • lib/interface/widgets/customappbar.dart:5:7 •
          must_be_immutable
   info • Unused import: 'package:casabalo/utility/mybehavior.dart' •
          lib/interface/widgets/homebodybuilder.dart:1:8 • unused_import
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: HomeBodyBuilder.tabController •
          lib/interface/widgets/homebodybuilder.dart:7:7 • must_be_immutable
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: HomeNavigationBar.tabController •
          lib/interface/widgets/homenavigationbar.dart:5:7 • must_be_immutable
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: MapStructures.place •
          lib/interface/widgets/mapstructures.dart:5:7 • must_be_immutable
   info • This class (or a class which this class inherits from) is marked as '@immutable', but one or more of
          its instance fields are not final: PointsWidget.size, PointsWidget.color, PointsWidget.fontSize •
          lib/interface/widgets/pointswidget.dart:4:7 • must_be_immutable
   info • Unused import: 'package:casabalo/models/promotionmodel.dart' •
          lib/interface/widgets/promotionswidget.dart:4:8 • unused_import
   info • The value of the local variable '_length' isn't used •
          lib/interface/widgets/promotionswidget.dart:35:25 • unused_local_variable
   info • Unused import: 'package:casabalo/models/user.dart' • lib/main.dart:2:8 • unused_import
   info • Unused import: 'dart:convert' • lib/models/orario.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' • lib/models/orario.dart:5:8 •
          unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/models/orario.dart:7:8 • unused_import
   info • This function has a return type of 'bool', but doesn't end with a return statement •
          lib/models/orario.dart:27:8 • missing_return
   info • Unused import: 'dart:convert' • lib/models/orario_giorno.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' • lib/models/orario_giorno.dart:5:8
          • unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/models/orario_giorno.dart:7:8 •
          unused_import
   info • Unused import: 'dart:convert' • lib/models/punto_vendita.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' • lib/models/punto_vendita.dart:5:8
          • unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/models/punto_vendita.dart:7:8 •
          unused_import
   info • Unused import: 'dart:convert' • lib/models/qualcosa.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' • lib/models/qualcosa.dart:5:8 •
          unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/models/qualcosa.dart:7:8 • unused_import
   info • Name types using UpperCamelCase • lib/models/qualcosa.dart:11:16 • camel_case_types
   info • Name types using UpperCamelCase • lib/models/qualcosa.g.dart:47:7 • camel_case_types
   info • Unused import: 'dart:convert' • lib/models/user.dart:3:8 • unused_import
   info • Unused import: 'package:built_collection/built_collection.dart' • lib/models/user.dart:5:8 •
          unused_import
   info • Unused import: 'package:built_value/serializer.dart' • lib/models/user.dart:7:8 • unused_import
   info • 'data' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:31:22 •
          deprecated_member_use_from_same_package
   info • 'codeType' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:32:22 •
          deprecated_member_use_from_same_package
   info • 'lineWidth' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:33:22 •
          deprecated_member_use_from_same_package
   info • 'barHeight' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:34:22 •
          deprecated_member_use_from_same_package
   info • 'hasText' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:35:22 •
          deprecated_member_use_from_same_package
   info • 'data' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:41:35 •
          deprecated_member_use_from_same_package
   info • 'codeType' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:41:51 •
          deprecated_member_use_from_same_package
   info • 'data' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:43:32 •
          deprecated_member_use_from_same_package
   info • 'codeType' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:43:48 •
          deprecated_member_use_from_same_package
   info • 'data' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:44:36 •
          deprecated_member_use_from_same_package
   info • 'codeType' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:44:52 •
          deprecated_member_use_from_same_package
   info • 'codeType' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:47:41 •
          deprecated_member_use_from_same_package
   info • 'data' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:47:51 •
          deprecated_member_use_from_same_package
   info • 'lineWidth' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:47:57 •
          deprecated_member_use_from_same_package
   info • 'barHeight' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:47:68 •
          deprecated_member_use_from_same_package
   info • 'hasText' is deprecated and shouldn't be used •
          lib/modified_plugins/barcode_110/src/barcode_image.dart:47:79 •
          deprecated_member_use_from_same_package
   info • Unused import: 'package:cloud_firestore/cloud_firestore.dart' •
          lib/utility/database_helpers.dart:3:8 • unused_import
   info • Unused import: 'package:firebase_messaging/firebase_messaging.dart' •
          lib/utility/database_helpers.dart:4:8 • unused_import
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:59:28 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:90:47 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:98:28 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:99:17 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:100:17 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:101:17 •
          unnecessary_brace_in_string_interps
   info • Avoid using braces in interpolation when not needed • lib/utility/database_helpers.dart:102:17 •
          unnecessary_brace_in_string_interps
   info • This function has a return type of 'Future<String>', but doesn't end with a return statement •
          lib/utility/methods.dart:6:18 • missing_return
   info • Unused import: 'package:casabalo/blocs/notifications/notifications_bloc.dart' •
          lib/utility/root.dart:1:8 • unused_import
   info • Unused import: 'package:casabalo/const.dart' • lib/utility/root.dart:5:8 • unused_import
   info • Unused import: 'package:kiwi/kiwi.dart' • lib/utility/root.dart:7:8 • unused_import

 flutter doctor -v
[✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Linux, locale en_US.UTF-8)
    • Flutter version 1.12.13+hotfix.5 at /home/gabriel/Documents/flutter
    • Framework revision 27321ebbad (6 weeks ago), 2019-12-10 18:15:01 -0800
    • Engine revision 2994f7e1e6
    • Dart version 2.7.0

 
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
    • Android SDK at /home/gabriel/Android/Sdk
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-29, build-tools 29.0.2
    • Java binary at: /home/gabriel/Documents/android-studio/jre/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
    • All Android licenses accepted.

[✓] Android Studio (version 3.5)
    • Android Studio at /home/gabriel/Documents/android-studio
    • Flutter plugin version 42.1.1
    • Dart plugin version 191.8593
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

[✓] Connected device (1 available)
    • ONEPLUS A3003 • 73c2cc6e • android-arm64 • Android 9 (API 28)

• No issues found!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions