hive generator runs indefinitely

Created on 25 Jul 2020  Â·  23Comments  Â·  Source: hivedb/hive

In my case, the hive generator runs indefinitely, it's been running for more than 15 minutes but no output.

My Classes

import 'package:hive/hive.dart';

part 'badges.g.dart';

@HiveType(typeId: 1)
class Badges {
  @HiveField(0)
  double experiencePerLevel;
  @HiveField(1)
  double order;
  @HiveField(2)
  String enabledTintColor;
  @HiveField(3)
  String name;
  @HiveField(4)
  String disabledTintColor;
  @HiveField(5)
  bool earnedMessage;
  @HiveField(6)
  bool supportLevelUp;
  @HiveField(7)
  String achievementId;
  @HiveField(8)
  String organizationId;
  @HiveField(9)
  String earnedDescription;
  @HiveField(10)
  String description;
  @HiveField(11)
  String disabledImage;
  @HiveField(12)
  String enabledImage;
  @HiveField(13)
  double daysRequired;
  @HiveField(14)
  String type;

  Badges(
      this.experiencePerLevel,
      this.order,
      this.enabledTintColor,
      this.name,
      this.disabledTintColor,
      this.earnedMessage,
      this.supportLevelUp,
      this.achievementId,
      this.organizationId,
      this.earnedDescription,
      this.description,
      this.disabledImage,
      this.enabledImage,
      this.daysRequired,
      this.type);

  Badges.fromJsonMap(Map<String, dynamic> map)
      : experiencePerLevel = map["experience-per-level"],
        order = map["order"],
        enabledTintColor = map["enabled-tint-color"],
        name = map["name"],
        disabledTintColor = map["disabled-tint-color"],
        earnedMessage = map["earnedMessage"],
        supportLevelUp = map["support-level-up"],
        achievementId = map["achievement-id"],
        organizationId = map["organization-id"],
        earnedDescription = map["earned-description"],
        description = map["description"],
        disabledImage = map["disabled-image"],
        enabledImage = map["enabled-image"],
        daysRequired = map["days-required"],
        type = map["type"];

  Map<String, dynamic> toJson() {
    final Map<String, dynamic> data = new Map<String, dynamic>();
    data['experience-per-level'] = experiencePerLevel;
    data['order'] = order;
    data['enabled-tint-color'] = enabledTintColor;
    data['name'] = name;
    data['disabled-tint-color'] = disabledTintColor;
    data['earnedMessage'] = earnedMessage;
    data['support-level-up'] = supportLevelUp;
    data['achievement-id'] = achievementId;
    data['organization-id'] = organizationId;
    data['earned-description'] = earnedDescription;
    data['description'] = description;
    data['disabled-image'] = disabledImage;
    data['enabled-image'] = enabledImage;
    data['days-required'] = daysRequired;
    data['type'] = type;
    return data;
  }
}
``` import 'package:hive/hive.dart'; import 'package:sprightly/new/model/sender.dart'; part 'recognition.g.dart'; @HiveType(typeId: 2) class Recognitions { @HiveField(0) String text; @HiveField(1) String date; @HiveField(2) Sender sender; Recognitions(this.text, this.date, this.sender); Recognitions.fromJsonMap(Map map): text = map["text"], date = map["date"], sender = Sender.fromJsonMap(map["sender"]); Map toJson() { final Map data = new Map(); data['text'] = text; data['date'] = date; data['sender'] = sender == null ? null : sender.toJson(); return data; } }

import 'package:hive/hive.dart'; part 'sender.g.dart'; @HiveType(typeId: 3) class Sender { @HiveField(0) String name; @HiveField(1) String profilePicture; @HiveField(2) String designation; @HiveField(3) String organization; @HiveField(4) String location; Sender(this.name, this.profilePicture, this.designation, this.organization, this.location); Sender.fromJsonMap(Map map) : name = map["name"], profilePicture = map["profilePicture"], designation = map["designnation"], organization = map["organization"], location = map["location"]; Map toJson() { final Map data = new Map(); data['name'] = name; data['profilePicture'] = profilePicture; data['designnation'] = designation; data['organization'] = organization; data['location'] = location; return data; } }

import 'package:hive/hive.dart'; import 'package:sprightly/new/model/badges.dart'; import 'package:sprightly/new/model/recognitions.dart'; part 'server.g.dart'; @HiveType(typeId: 0) class Server { @HiveField(0) String ppa; @HiveField(1) String storeId; @HiveField(2) String email; @HiveField(3) String lastLogin; @HiveField(4) String organizationName; @HiveField(5) String regionId; @HiveField(6) String divisionId; @HiveField(7) String tipPercent; @HiveField(8) String serverName; @HiveField(9) String image; @HiveField(10) String orgLogo; @HiveField(11) String organizationId; @HiveField(12) String firstName; @HiveField(13) String cognitoId; @HiveField(14) String totalTickets; @HiveField(15) String orgUserId; @HiveField(16) String employeeId; @HiveField(17) String totalSales; @HiveField(18) String storeName; @HiveField(19) String osatPercent; @HiveField(20) String lastActive; @HiveField(21) String guestCount; @HiveField(22) String totalDuration; @HiveField(23) String roleId; @HiveField(24) String lastName; @HiveField(25) String firstLogin; @HiveField(26) String jobCode; @HiveField(27) String osatTickets; @HiveField(28) String title; @HiveField(29) List badges; @HiveField(30) List recognitions; @HiveField(31) double get tip => (tipPercent != null && tipPercent.isNotEmpty && double.parse(tipPercent) != null ? double.parse(tipPercent) : 0.0); @HiveField(32) double get osat => (osatPercent != null && osatPercent.isNotEmpty && double.parse(osatPercent) != null ? double.parse(osatPercent) : 0.0); @HiveField(33) double get perPersonAvg => (ppa != null && ppa.isNotEmpty && double.parse(ppa) != null ? double.parse(ppa) : 0.0); @HiveField(34) double get salesPerTicket => ((totalSales != null && totalTickets != null) && (totalSales.isNotEmpty && totalTickets.isNotEmpty) && (double.parse(totalSales) != null && double.parse(totalTickets) != null) ? (double.parse(totalSales) / double.parse(totalTickets)) : 0.0); @HiveField(35) String get storeRank => (tip + osat + perPersonAvg + salesPerTicket).round().toString(); @HiveField(36) String get orgRank => (((perPersonAvg * 100 / 40) + (osat * 100 / 10) + (tip * 100 / 20) + (salesPerTicket * 100 / 30)) / 4) .round() .toString(); Server( this.ppa, this.storeId, this.email, this.lastLogin, this.organizationName, this.regionId, this.divisionId, this.tipPercent, this.serverName, this.image, this.orgLogo, this.organizationId, this.firstName, this.cognitoId, this.totalTickets, this.orgUserId, this.employeeId, this.totalSales, this.storeName, this.osatPercent, this.lastActive, this.guestCount, this.totalDuration, this.roleId, this.lastName, this.firstLogin, this.jobCode, this.osatTickets, this.title, this.badges, this.recognitions); Server.fromJsonMap(Map map) : ppa = map["ppa"], storeId = map["storeid"], email = map["email"], lastLogin = map["lastlogin"], organizationName = map["organizationname"], regionId = map["regionid"], divisionId = map["divisionid"], tipPercent = map["tipprcnt"], serverName = map["servername"], image = map["image"], orgLogo = map["orgLogo"], organizationId = map["organizationid"], firstName = map["firstname"], cognitoId = map["cognitoid"], totalTickets = map["totaltickets"], orgUserId = map["orguserid"], employeeId = map["employeeid"], totalSales = map["totalsales"], storeName = map["storename"], osatPercent = map["osatprcnt"], lastActive = map["lastactive"], guestCount = map["guestcount"], totalDuration = map["totalduration"], roleId = map["roleid"], lastName = map["lastname"], firstLogin = map["firstlogin"], jobCode = map["jobcode"], osatTickets = map["osattickets"], title = map["title"], badges = List.from(map["badges"] != null ? map["badges"].map((it) => Badges.fromJsonMap(it)) : List(0)), recognitions = List.from(map["recognitions"] != null ? map["recognitions"].map((it) => Recognitions.fromJsonMap(it)) : List(0)); Map toJson() { final Map data = new Map(); data['ppa'] = ppa; data['storeid'] = storeId; data['email'] = email; data['lastlogin'] = lastLogin; data['organizationname'] = organizationName; data['regionid'] = regionId; data['divisionid'] = divisionId; data['tipprcnt'] = tipPercent; data['servername'] = serverName; data['image'] = image; data['organizationid'] = organizationId; data['firstname'] = firstName; data['cognitoid'] = cognitoId; data['totaltickets'] = totalTickets; data['orguserid'] = orgUserId; data['employeeid'] = employeeId; data['totalsales'] = totalSales; data['storename'] = storeName; data['osatprcnt'] = osatPercent; data['lastactive'] = lastActive; data['guestcount'] = guestCount; data['totalduration'] = totalDuration; data['roleid'] = roleId; data['lastname'] = lastName; data['firstlogin'] = firstLogin; data['jobcode'] = jobCode; data['osattickets'] = osatTickets; data['title'] = title; data['badges'] = badges != null ? this.badges.map((v) => v.toJson()).toList() : List(0); data['recognitions'] = recognitions != null ? this.recognitions.map((v) => v.toJson()).toList() : List(0); return data; } }
</p>
</details>

<details><summary>The Console output</summary>
<p>


[INFO] Generating build script... [INFO] Generating build script completed, took 463ms [WARNING] Deleted previous snapshot due to missing asset graph. [INFO] Creating build script snapshot...... [INFO] Creating build script snapshot... completed, took 14.3s [INFO] Initializing inputs [INFO] Building new asset graph... [INFO] Building new asset graph completed, took 707ms [INFO] Checking for unexpected pre-existing outputs.... [INFO] Checking for unexpected pre-existing outputs. completed, took 1ms [INFO] Running build... [INFO] Generating SDK summary... [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [SEVERE] hive_generator:hive_generator on lib/new/home.dart: Bad state: Unexpected diagnostics: /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled. /Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled. [INFO] 2.7s elapsed, 1/17 actions completed. [INFO] 3.7s elapsed, 1/17 actions completed. [INFO] 4.8s elapsed, 1/17 actions completed. [INFO] 5.8s elapsed, 1/17 actions completed. [INFO] 6.8s elapsed, 1/17 actions completed. [INFO] 7.9s elapsed, 1/17 actions completed. [INFO] 8.9s elapsed, 1/17 actions completed. [INFO] 10.0s elapsed, 1/17 actions completed. [INFO] 11.0s elapsed, 1/17 actions completed. [INFO] 12.1s elapsed, 1/17 actions completed. [INFO] 13.1s elapsed, 1/17 actions completed. [INFO] 14.2s elapsed, 1/17 actions completed. [INFO] 15.2s elapsed, 1/17 actions completed. [INFO] 16.3s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 17.8s elapsed, 1/17 actions completed. [INFO] 18.8s elapsed, 1/17 actions completed. [INFO] 19.9s elapsed, 1/17 actions completed. [INFO] 21.0s elapsed, 1/17 actions completed. [INFO] 22.0s elapsed, 1/17 actions completed. [INFO] 23.1s elapsed, 1/17 actions completed. [INFO] 24.2s elapsed, 1/17 actions completed. [INFO] 25.3s elapsed, 1/17 actions completed. [INFO] 26.4s elapsed, 1/17 actions completed. [INFO] 27.4s elapsed, 1/17 actions completed. [INFO] 28.4s elapsed, 1/17 actions completed. [INFO] 29.5s elapsed, 1/17 actions completed. [INFO] 30.6s elapsed, 1/17 actions completed. [INFO] 31.7s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 32.8s elapsed, 1/17 actions completed. [INFO] 33.9s elapsed, 1/17 actions completed. [INFO] 34.9s elapsed, 1/17 actions completed. [INFO] 36.0s elapsed, 1/17 actions completed. [INFO] 37.1s elapsed, 1/17 actions completed. [INFO] 38.2s elapsed, 1/17 actions completed. [INFO] 39.3s elapsed, 1/17 actions completed. [INFO] 40.4s elapsed, 1/17 actions completed. [INFO] 41.5s elapsed, 1/17 actions completed. [INFO] 42.5s elapsed, 1/17 actions completed. [INFO] 43.6s elapsed, 1/17 actions completed. [INFO] 44.6s elapsed, 1/17 actions completed. [INFO] 45.6s elapsed, 1/17 actions completed. [INFO] 46.7s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 47.9s elapsed, 1/17 actions completed. [INFO] 49.0s elapsed, 1/17 actions completed. [INFO] 50.1s elapsed, 1/17 actions completed. [INFO] 51.1s elapsed, 1/17 actions completed. [INFO] 52.2s elapsed, 1/17 actions completed. [INFO] 53.3s elapsed, 1/17 actions completed. [INFO] 54.3s elapsed, 1/17 actions completed. [INFO] 55.4s elapsed, 1/17 actions completed. [INFO] 56.4s elapsed, 1/17 actions completed. [INFO] 57.5s elapsed, 1/17 actions completed. [INFO] 58.6s elapsed, 1/17 actions completed. [INFO] 59.7s elapsed, 1/17 actions completed. [INFO] 1m 0s elapsed, 1/17 actions completed. [INFO] 1m 1s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 1m 2s elapsed, 1/17 actions completed. [INFO] 1m 4s elapsed, 1/17 actions completed. [INFO] 1m 5s elapsed, 1/17 actions completed. [INFO] 1m 6s elapsed, 1/17 actions completed. [INFO] 1m 7s elapsed, 1/17 actions completed. [INFO] 1m 8s elapsed, 1/17 actions completed. [INFO] 1m 9s elapsed, 1/17 actions completed. [INFO] 1m 10s elapsed, 1/17 actions completed. [INFO] 1m 11s elapsed, 1/17 actions completed. [INFO] 1m 12s elapsed, 1/17 actions completed. [INFO] 1m 13s elapsed, 1/17 actions completed. [INFO] 1m 14s elapsed, 1/17 actions completed. [INFO] 1m 15s elapsed, 1/17 actions completed. [INFO] 1m 16s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 1m 18s elapsed, 1/17 actions completed. [INFO] 1m 19s elapsed, 1/17 actions completed. [INFO] 1m 20s elapsed, 1/17 actions completed. [INFO] 1m 21s elapsed, 1/17 actions completed. [INFO] 1m 22s elapsed, 1/17 actions completed. [INFO] 1m 23s elapsed, 1/17 actions completed. [INFO] 1m 24s elapsed, 1/17 actions completed. [INFO] 1m 25s elapsed, 1/17 actions completed. [INFO] 1m 26s elapsed, 1/17 actions completed. [INFO] 1m 27s elapsed, 1/17 actions completed. [INFO] 1m 28s elapsed, 1/17 actions completed. [INFO] 1m 29s elapsed, 1/17 actions completed. [INFO] 1m 30s elapsed, 1/17 actions completed. [INFO] 1m 31s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 1m 33s elapsed, 1/17 actions completed. [INFO] 1m 34s elapsed, 1/17 actions completed. [INFO] 1m 35s elapsed, 1/17 actions completed. [INFO] 1m 36s elapsed, 1/17 actions completed. [INFO] 1m 37s elapsed, 1/17 actions completed. [INFO] 1m 38s elapsed, 1/17 actions completed. [INFO] 1m 39s elapsed, 1/17 actions completed. [INFO] 1m 40s elapsed, 1/17 actions completed. [INFO] 1m 41s elapsed, 1/17 actions completed. [INFO] 1m 42s elapsed, 1/17 actions completed. [INFO] 1m 43s elapsed, 1/17 actions completed. [INFO] 1m 44s elapsed, 1/17 actions completed. [INFO] 1m 45s elapsed, 1/17 actions completed. [INFO] 1m 46s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 1m 48s elapsed, 1/17 actions completed. [INFO] 1m 49s elapsed, 1/17 actions completed. [INFO] 1m 50s elapsed, 1/17 actions completed. [INFO] 1m 51s elapsed, 1/17 actions completed. [INFO] 1m 52s elapsed, 1/17 actions completed. [INFO] 1m 53s elapsed, 1/17 actions completed. [INFO] 1m 54s elapsed, 1/17 actions completed. [INFO] 1m 55s elapsed, 1/17 actions completed. [INFO] 1m 56s elapsed, 1/17 actions completed. [INFO] 1m 57s elapsed, 1/17 actions completed. [INFO] 1m 58s elapsed, 1/17 actions completed. [INFO] 1m 59s elapsed, 1/17 actions completed. [INFO] 2m 0s elapsed, 1/17 actions completed. [INFO] 2m 1s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 2m 3s elapsed, 1/17 actions completed. [INFO] 2m 4s elapsed, 1/17 actions completed. [INFO] 2m 5s elapsed, 1/17 actions completed. [INFO] 2m 6s elapsed, 1/17 actions completed. [INFO] 2m 7s elapsed, 1/17 actions completed. [INFO] 2m 8s elapsed, 1/17 actions completed. [INFO] 2m 9s elapsed, 1/17 actions completed. [INFO] 2m 10s elapsed, 1/17 actions completed. [INFO] 2m 11s elapsed, 1/17 actions completed. [INFO] 2m 12s elapsed, 1/17 actions completed. [INFO] 2m 14s elapsed, 1/17 actions completed. [INFO] 2m 15s elapsed, 1/17 actions completed. [INFO] 2m 16s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 2m 18s elapsed, 1/17 actions completed. [INFO] 2m 19s elapsed, 1/17 actions completed. [INFO] 2m 20s elapsed, 1/17 actions completed. [INFO] 2m 21s elapsed, 1/17 actions completed. [INFO] 2m 22s elapsed, 1/17 actions completed. [INFO] 2m 23s elapsed, 1/17 actions completed. [INFO] 2m 24s elapsed, 1/17 actions completed. [INFO] 2m 25s elapsed, 1/17 actions completed. [INFO] 2m 26s elapsed, 1/17 actions completed. [INFO] 2m 27s elapsed, 1/17 actions completed. [INFO] 2m 28s elapsed, 1/17 actions completed. [INFO] 2m 29s elapsed, 1/17 actions completed. [INFO] 2m 30s elapsed, 1/17 actions completed. [INFO] 2m 32s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 2m 33s elapsed, 1/17 actions completed. [INFO] 2m 34s elapsed, 1/17 actions completed. [INFO] 2m 35s elapsed, 1/17 actions completed. [INFO] 2m 36s elapsed, 1/17 actions completed. [INFO] 2m 37s elapsed, 1/17 actions completed. [INFO] 2m 38s elapsed, 1/17 actions completed. [INFO] 2m 39s elapsed, 1/17 actions completed. [INFO] 2m 40s elapsed, 1/17 actions completed. [INFO] 2m 41s elapsed, 1/17 actions completed. [INFO] 2m 42s elapsed, 1/17 actions completed. [INFO] 2m 43s elapsed, 1/17 actions completed. [INFO] 2m 44s elapsed, 1/17 actions completed. [INFO] 2m 45s elapsed, 1/17 actions completed. [INFO] 2m 46s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 2m 48s elapsed, 1/17 actions completed. [INFO] 2m 49s elapsed, 1/17 actions completed. [INFO] 2m 50s elapsed, 1/17 actions completed. [INFO] 2m 51s elapsed, 1/17 actions completed. [INFO] 2m 52s elapsed, 1/17 actions completed. [INFO] 2m 53s elapsed, 1/17 actions completed. [INFO] 2m 54s elapsed, 1/17 actions completed. [INFO] 2m 55s elapsed, 1/17 actions completed. [INFO] 2m 56s elapsed, 1/17 actions completed. [INFO] 2m 58s elapsed, 1/17 actions completed. [INFO] 2m 59s elapsed, 1/17 actions completed. [INFO] 3m 0s elapsed, 1/17 actions completed. [INFO] 3m 1s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 3m 3s elapsed, 1/17 actions completed. [INFO] 3m 4s elapsed, 1/17 actions completed. [INFO] 3m 5s elapsed, 1/17 actions completed. [INFO] 3m 6s elapsed, 1/17 actions completed. [INFO] 3m 7s elapsed, 1/17 actions completed. [INFO] 3m 8s elapsed, 1/17 actions completed. [INFO] 3m 9s elapsed, 1/17 actions completed. [INFO] 3m 10s elapsed, 1/17 actions completed. [INFO] 3m 11s elapsed, 1/17 actions completed. [INFO] 3m 12s elapsed, 1/17 actions completed. [INFO] 3m 13s elapsed, 1/17 actions completed. [INFO] 3m 14s elapsed, 1/17 actions completed. [INFO] 3m 16s elapsed, 1/17 actions completed. [INFO] 3m 17s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 3m 18s elapsed, 1/17 actions completed. [INFO] 3m 19s elapsed, 1/17 actions completed. [INFO] 3m 20s elapsed, 1/17 actions completed. [INFO] 3m 21s elapsed, 1/17 actions completed. [INFO] 3m 22s elapsed, 1/17 actions completed. [INFO] 3m 23s elapsed, 1/17 actions completed. [INFO] 3m 24s elapsed, 1/17 actions completed. [INFO] 3m 25s elapsed, 1/17 actions completed. [INFO] 3m 26s elapsed, 1/17 actions completed. [INFO] 3m 27s elapsed, 1/17 actions completed. [INFO] 3m 29s elapsed, 1/17 actions completed. [INFO] 3m 30s elapsed, 1/17 actions completed. [INFO] 3m 31s elapsed, 1/17 actions completed. [INFO] 3m 32s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 3m 33s elapsed, 1/17 actions completed. [INFO] 3m 34s elapsed, 1/17 actions completed. [INFO] 3m 35s elapsed, 1/17 actions completed. [INFO] 3m 36s elapsed, 1/17 actions completed. [INFO] 3m 37s elapsed, 1/17 actions completed. [INFO] 3m 38s elapsed, 1/17 actions completed. [INFO] 3m 39s elapsed, 1/17 actions completed. [INFO] 3m 40s elapsed, 1/17 actions completed. [INFO] 3m 41s elapsed, 1/17 actions completed. [INFO] 3m 42s elapsed, 1/17 actions completed. [INFO] 3m 43s elapsed, 1/17 actions completed. [INFO] 3m 45s elapsed, 1/17 actions completed. [INFO] 3m 46s elapsed, 1/17 actions completed. [INFO] 3m 47s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 3m 48s elapsed, 1/17 actions completed. [INFO] 3m 49s elapsed, 1/17 actions completed. [INFO] 3m 50s elapsed, 1/17 actions completed. [INFO] 3m 51s elapsed, 1/17 actions completed. [INFO] 3m 52s elapsed, 1/17 actions completed. [INFO] 3m 53s elapsed, 1/17 actions completed. [INFO] 3m 55s elapsed, 1/17 actions completed. [INFO] 3m 56s elapsed, 1/17 actions completed. [INFO] 3m 57s elapsed, 1/17 actions completed. [INFO] 3m 58s elapsed, 1/17 actions completed. [INFO] 3m 59s elapsed, 1/17 actions completed. [INFO] 4m 0s elapsed, 1/17 actions completed. [INFO] 4m 1s elapsed, 1/17 actions completed. [INFO] 4m 2s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 4m 3s elapsed, 1/17 actions completed. [INFO] 4m 4s elapsed, 1/17 actions completed. [INFO] 4m 5s elapsed, 1/17 actions completed. [INFO] 4m 6s elapsed, 1/17 actions completed. [INFO] 4m 7s elapsed, 1/17 actions completed. [INFO] 4m 9s elapsed, 1/17 actions completed. [INFO] 4m 10s elapsed, 1/17 actions completed. [INFO] 4m 11s elapsed, 1/17 actions completed. [INFO] 4m 12s elapsed, 1/17 actions completed. [INFO] 4m 13s elapsed, 1/17 actions completed. [INFO] 4m 14s elapsed, 1/17 actions completed. [INFO] 4m 15s elapsed, 1/17 actions completed. [INFO] 4m 16s elapsed, 1/17 actions completed. [INFO] 4m 17s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 4m 18s elapsed, 1/17 actions completed. [INFO] 4m 19s elapsed, 1/17 actions completed. [INFO] 4m 20s elapsed, 1/17 actions completed. [INFO] 4m 21s elapsed, 1/17 actions completed. [INFO] 4m 22s elapsed, 1/17 actions completed. [INFO] 4m 23s elapsed, 1/17 actions completed. [INFO] 4m 25s elapsed, 1/17 actions completed. [INFO] 4m 26s elapsed, 1/17 actions completed. [INFO] 4m 27s elapsed, 1/17 actions completed. [INFO] 4m 28s elapsed, 1/17 actions completed. [INFO] 4m 29s elapsed, 1/17 actions completed. [INFO] 4m 30s elapsed, 1/17 actions completed. [INFO] 4m 31s elapsed, 1/17 actions completed. [INFO] 4m 32s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 4m 33s elapsed, 1/17 actions completed. [INFO] 4m 34s elapsed, 1/17 actions completed. [INFO] 4m 35s elapsed, 1/17 actions completed. [INFO] 4m 37s elapsed, 1/17 actions completed. [INFO] 4m 38s elapsed, 1/17 actions completed. [INFO] 4m 39s elapsed, 1/17 actions completed. [INFO] 4m 40s elapsed, 1/17 actions completed. [INFO] 4m 41s elapsed, 1/17 actions completed. [INFO] 4m 42s elapsed, 1/17 actions completed. [INFO] 4m 43s elapsed, 1/17 actions completed. [INFO] 4m 44s elapsed, 1/17 actions completed. [INFO] 4m 45s elapsed, 1/17 actions completed. [INFO] 4m 46s elapsed, 1/17 actions completed. [INFO] 4m 47s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 4m 48s elapsed, 1/17 actions completed. [INFO] 4m 49s elapsed, 1/17 actions completed. [INFO] 4m 51s elapsed, 1/17 actions completed. [INFO] 4m 52s elapsed, 1/17 actions completed. [INFO] 4m 53s elapsed, 1/17 actions completed. [INFO] 4m 54s elapsed, 1/17 actions completed. [INFO] 4m 55s elapsed, 1/17 actions completed. [INFO] 4m 56s elapsed, 1/17 actions completed. [INFO] 4m 57s elapsed, 1/17 actions completed. [INFO] 4m 58s elapsed, 1/17 actions completed. [INFO] 4m 59s elapsed, 1/17 actions completed. [INFO] 5m 0s elapsed, 1/17 actions completed. [INFO] 5m 1s elapsed, 1/17 actions completed. [INFO] 5m 2s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 5m 3s elapsed, 1/17 actions completed. [INFO] 5m 5s elapsed, 1/17 actions completed. [INFO] 5m 6s elapsed, 1/17 actions completed. [INFO] 5m 7s elapsed, 1/17 actions completed. [INFO] 5m 8s elapsed, 1/17 actions completed. [INFO] 5m 9s elapsed, 1/17 actions completed. [INFO] 5m 10s elapsed, 1/17 actions completed. [INFO] 5m 11s elapsed, 1/17 actions completed. [INFO] 5m 12s elapsed, 1/17 actions completed. [INFO] 5m 13s elapsed, 1/17 actions completed. [INFO] 5m 14s elapsed, 1/17 actions completed. [INFO] 5m 15s elapsed, 1/17 actions completed. [INFO] 5m 16s elapsed, 1/17 actions completed. [INFO] 5m 17s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 5m 19s elapsed, 1/17 actions completed. [INFO] 5m 20s elapsed, 1/17 actions completed. [INFO] 5m 21s elapsed, 1/17 actions completed. [INFO] 5m 22s elapsed, 1/17 actions completed. [INFO] 5m 23s elapsed, 1/17 actions completed. [INFO] 5m 24s elapsed, 1/17 actions completed. [INFO] 5m 25s elapsed, 1/17 actions completed. [INFO] 5m 26s elapsed, 1/17 actions completed. [INFO] 5m 27s elapsed, 1/17 actions completed. [INFO] 5m 28s elapsed, 1/17 actions completed. [INFO] 5m 29s elapsed, 1/17 actions completed. [INFO] 5m 30s elapsed, 1/17 actions completed. [INFO] 5m 31s elapsed, 1/17 actions completed. [INFO] 5m 32s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 5m 34s elapsed, 1/17 actions completed. [INFO] 5m 35s elapsed, 1/17 actions completed. [INFO] 5m 36s elapsed, 1/17 actions completed. [INFO] 5m 37s elapsed, 1/17 actions completed. [INFO] 5m 38s elapsed, 1/17 actions completed. [INFO] 5m 39s elapsed, 1/17 actions completed. [INFO] 5m 40s elapsed, 1/17 actions completed. [INFO] 5m 41s elapsed, 1/17 actions completed. [INFO] 5m 42s elapsed, 1/17 actions completed. [INFO] 5m 43s elapsed, 1/17 actions completed. [INFO] 5m 44s elapsed, 1/17 actions completed. [INFO] 5m 45s elapsed, 1/17 actions completed. [INFO] 5m 46s elapsed, 1/17 actions completed. [INFO] 5m 48s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 5m 49s elapsed, 1/17 actions completed. [INFO] 5m 50s elapsed, 1/17 actions completed. [INFO] 5m 51s elapsed, 1/17 actions completed. [INFO] 5m 52s elapsed, 1/17 actions completed. [INFO] 5m 53s elapsed, 1/17 actions completed. [INFO] 5m 54s elapsed, 1/17 actions completed. [INFO] 5m 55s elapsed, 1/17 actions completed. [INFO] 5m 56s elapsed, 1/17 actions completed. [INFO] 5m 57s elapsed, 1/17 actions completed. [INFO] 5m 58s elapsed, 1/17 actions completed. [INFO] 5m 59s elapsed, 1/17 actions completed. [INFO] 6m 1s elapsed, 1/17 actions completed. [INFO] 6m 2s elapsed, 1/17 actions completed. [INFO] 6m 3s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 6m 4s elapsed, 1/17 actions completed. [INFO] 6m 5s elapsed, 1/17 actions completed. [INFO] 6m 6s elapsed, 1/17 actions completed. [INFO] 6m 7s elapsed, 1/17 actions completed. [INFO] 6m 8s elapsed, 1/17 actions completed. [INFO] 6m 9s elapsed, 1/17 actions completed. [INFO] 6m 10s elapsed, 1/17 actions completed. [INFO] 6m 11s elapsed, 1/17 actions completed. [INFO] 6m 12s elapsed, 1/17 actions completed. [INFO] 6m 13s elapsed, 1/17 actions completed. [INFO] 6m 14s elapsed, 1/17 actions completed. [INFO] 6m 15s elapsed, 1/17 actions completed. [INFO] 6m 16s elapsed, 1/17 actions completed. [INFO] 6m 17s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 6m 19s elapsed, 1/17 actions completed. [INFO] 6m 20s elapsed, 1/17 actions completed. [INFO] 6m 21s elapsed, 1/17 actions completed. [INFO] 6m 22s elapsed, 1/17 actions completed. [INFO] 6m 23s elapsed, 1/17 actions completed. [INFO] 6m 24s elapsed, 1/17 actions completed. [INFO] 6m 25s elapsed, 1/17 actions completed. [INFO] 6m 26s elapsed, 1/17 actions completed. [INFO] 6m 27s elapsed, 1/17 actions completed. [INFO] 6m 29s elapsed, 1/17 actions completed. [INFO] 6m 30s elapsed, 1/17 actions completed. [INFO] 6m 31s elapsed, 1/17 actions completed. [INFO] 6m 32s elapsed, 1/17 actions completed. [INFO] 6m 33s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 6m 34s elapsed, 1/17 actions completed. [INFO] 6m 35s elapsed, 1/17 actions completed. [INFO] 6m 36s elapsed, 1/17 actions completed. [INFO] 6m 37s elapsed, 1/17 actions completed. [INFO] 6m 38s elapsed, 1/17 actions completed. [INFO] 6m 39s elapsed, 1/17 actions completed. [INFO] 6m 40s elapsed, 1/17 actions completed. [INFO] 6m 41s elapsed, 1/17 actions completed. [INFO] 6m 43s elapsed, 1/17 actions completed. [INFO] 6m 44s elapsed, 1/17 actions completed. [INFO] 6m 45s elapsed, 1/17 actions completed. [INFO] 6m 46s elapsed, 1/17 actions completed. [INFO] 6m 47s elapsed, 1/17 actions completed. [INFO] 6m 48s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 6m 49s elapsed, 1/17 actions completed. [INFO] 6m 50s elapsed, 1/17 actions completed. [INFO] 6m 51s elapsed, 1/17 actions completed. [INFO] 6m 52s elapsed, 1/17 actions completed. [INFO] 6m 53s elapsed, 1/17 actions completed. [INFO] 6m 54s elapsed, 1/17 actions completed. [INFO] 6m 55s elapsed, 1/17 actions completed. [INFO] 6m 56s elapsed, 1/17 actions completed. [INFO] 6m 57s elapsed, 1/17 actions completed. [INFO] 6m 59s elapsed, 1/17 actions completed. [INFO] 7m 0s elapsed, 1/17 actions completed. [INFO] 7m 1s elapsed, 1/17 actions completed. [INFO] 7m 2s elapsed, 1/17 actions completed. [INFO] 7m 3s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 7m 4s elapsed, 1/17 actions completed. [INFO] 7m 5s elapsed, 1/17 actions completed. [INFO] 7m 6s elapsed, 1/17 actions completed. [INFO] 7m 7s elapsed, 1/17 actions completed. [INFO] 7m 8s elapsed, 1/17 actions completed. [INFO] 7m 10s elapsed, 1/17 actions completed. [INFO] 7m 11s elapsed, 1/17 actions completed. [INFO] 7m 12s elapsed, 1/17 actions completed. [INFO] 7m 13s elapsed, 1/17 actions completed. [INFO] 7m 14s elapsed, 1/17 actions completed. [INFO] 7m 15s elapsed, 1/17 actions completed. [INFO] 7m 16s elapsed, 1/17 actions completed. [INFO] 7m 17s elapsed, 1/17 actions completed. [INFO] 7m 18s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 7m 19s elapsed, 1/17 actions completed. [INFO] 7m 20s elapsed, 1/17 actions completed. [INFO] 7m 21s elapsed, 1/17 actions completed. [INFO] 7m 22s elapsed, 1/17 actions completed. [INFO] 7m 24s elapsed, 1/17 actions completed. [INFO] 7m 25s elapsed, 1/17 actions completed. [INFO] 7m 26s elapsed, 1/17 actions completed. [INFO] 7m 27s elapsed, 1/17 actions completed. [INFO] 7m 28s elapsed, 1/17 actions completed. [INFO] 7m 29s elapsed, 1/17 actions completed. [INFO] 7m 30s elapsed, 1/17 actions completed. [INFO] 7m 31s elapsed, 1/17 actions completed. [INFO] 7m 32s elapsed, 1/17 actions completed. [INFO] 7m 33s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.0s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 7m 34s elapsed, 1/17 actions completed. [INFO] 7m 35s elapsed, 1/17 actions completed. [INFO] 7m 36s elapsed, 1/17 actions completed. [INFO] 7m 37s elapsed, 1/17 actions completed. [INFO] 7m 38s elapsed, 1/17 actions completed. [INFO] 7m 40s elapsed, 1/17 actions completed. [INFO] 7m 41s elapsed, 1/17 actions completed. [INFO] 7m 42s elapsed, 1/17 actions completed. [INFO] 7m 43s elapsed, 1/17 actions completed. [INFO] 7m 44s elapsed, 1/17 actions completed. [INFO] 7m 45s elapsed, 1/17 actions completed. [INFO] 7m 46s elapsed, 1/17 actions completed. [INFO] 7m 47s elapsed, 1/17 actions completed. [INFO] 7m 48s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 7m 49s elapsed, 1/17 actions completed. [INFO] 7m 50s elapsed, 1/17 actions completed. [INFO] 7m 51s elapsed, 1/17 actions completed. [INFO] 7m 52s elapsed, 1/17 actions completed. [INFO] 7m 54s elapsed, 1/17 actions completed. [INFO] 7m 55s elapsed, 1/17 actions completed. [INFO] 7m 56s elapsed, 1/17 actions completed. [INFO] 7m 57s elapsed, 1/17 actions completed. [INFO] 7m 58s elapsed, 1/17 actions completed. [INFO] 7m 59s elapsed, 1/17 actions completed. [INFO] 8m 0s elapsed, 1/17 actions completed. [INFO] 8m 1s elapsed, 1/17 actions completed. [INFO] 8m 2s elapsed, 1/17 actions completed. [INFO] 8m 3s elapsed, 1/17 actions completed. [WARNING] No actions completed for 15.1s, waiting on: - hive_generator:hive_generator on lib/new/repository/repository.dart - hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart - hive_generator:hive_generator on lib/new/profileDetail/achievements.dart - hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart - hive_generator:hive_generator on lib/new/profileDetail/recognition.dart .. and 11 more [INFO] 8m 4s elapsed, 1/17 actions completed. [INFO] 8m 5s elapsed, 1/17 actions completed. [INFO] 8m 7s elapsed, 1/17 actions completed. [INFO] 8m 8s elapsed, 1/17 actions completed. [INFO] 8m 9s elapsed, 1/17 actions completed. [INFO] 8m 10s elapsed, 1/17 actions completed. [INFO] 8m 11s elapsed, 1/17 actions completed. [INFO] 8m 12s elapsed, 1/17 actions completed. [INFO] 8m 13s elapsed, 1/17 actions completed. [INFO] 8m 14s elapsed, 1/17 actions completed. [INFO] 8m 15s elapsed, 1/17 actions completed.``` ```

hive: ^1.4.2
hive_flutter: ^0.3.1

hive_generator: ^0.7.1
build_runner: ^1.10.0

Version

  • Platform: MacOS
  • Flutter 1.20.0-7.2.pre • channel beta • https://github.com/flutter/flutter.git
  • Framework • revision a2bde82fbd (7 days ago) • 2020-07-18 15:16:35 -0700
  • Engine • revision 60b269d898
  • Tools • Dart 2.9.0 (build 2.9.0-21.2.beta)
  • Hive version: 1.4.2
bug help wanted problem

Most helpful comment

I have faced with same issue when generating json_serializable. I don't know how but it fixed by itself. I think the issue is related to analyzer package.

Please could you try adding this lines to pubspec.yaml? Let me know if it worked.

dependency_overrides:
  analyzer: 0.39.14

All 23 comments

I have faced with same issue when generating json_serializable. I don't know how but it fixed by itself. I think the issue is related to analyzer package.

Please could you try adding this lines to pubspec.yaml? Let me know if it worked.

dependency_overrides:
  analyzer: 0.39.14

@TheMisir awesome thanks, btw what's the catch here the tutorial I'm following also had some kind of issue and it was solved by downgrading the analyzer by 1 (for him it was 0.38.3 -> 0.38.2), the default analyzer for me was 0.39.15 and we downgraded it to 0.39.14, is it always 1 decrement or just a coincidence.

@TheMisir awesome thanks, btw what's the catch here the tutorial I'm following also had some kind of issue and it was solved by downgrading the analyzer by 1 (for him it was 0.38.3 -> 0.38.2), the default analyzer for me was 0.39.15 and we downgraded it to 0.39.14, is it always 1 decrement or just a coincidence.

I think latest version of analyzer has a bug that causes this issue. But I don't know exact reason

[INFO] Running build...
[INFO] Generating SDK summary...
[SEVERE] hive_generator:hive_generator on lib/Auth&Http/Auth.dart:

Bad state: Unexpected diagnostics:
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.  
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.  
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.   
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.  
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.

Same error, may i know the solution for this

same error found

@anandsubbu007 & @iamcorona you can add this lines to pubspec.yml, then run flutter pub get.

@anandsubbu007 & @iamcorona you can add this lines to pubspec.yml, then run flutter pub get.

thanks! it work!

I just hit this as well, changing the analyzer made it work. Does anyone know why changing the analyzer resolves the issue?

analyzer 0.39.16 works for me

dependency_overrides:
  analyzer: 0.39.16

My workaround for flutter 1.20 how generate .g files:

  • Create a new flutter project
  • Copy dart files for hive model to a new project
  • In dev dependencies in new project use build_runner: ^1.10.1 !
  • Run flutter packages pub run build_runner build
  • Copy generated model files back to my project

Didn't work for me

Didn't work for me neither, it runs indefinitely.

@AAverin , @BenevidesLecontes have you tried https://github.com/hivedb/hive/issues/387#issuecomment-663900752 ?

@AAverin yes. All I have in my pubspec

environment:
  sdk: ">=2.6.0 <3.0.0"

dependencies:
  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter
  flutter_cupertino_localizations: any
  cupertino_icons: ^0.1.3
  brasil_fields: ^0.4.0
  flutter_bloc: ^6.0.1
  equatable: ^1.2.4
  rxdart: ^0.24.1
  cpf_cnpj_validator: ^1.0.5
  validators: ^2.0.1
  keyboard_avoider: ^0.1.2
  flutter_dotenv: ^2.1.0
  dio: ^3.0.10
  sliding_up_panel: ^1.0.2
  local_auth: ^0.6.3+1
  get_it: ^4.0.4
  path_provider: any
  hive: ^1.4.4
  hive_flutter: 0.3.1
  sliding_sheet: any
  expandable: ^4.1.4
  charts_flutter: any
  mockito: ^4.1.1
  auto_route: ^0.2.2
  diacritic: ^0.1.1
  url_launcher: ^5.5.0
  jiffy: ^3.0.1
  intl: ^0.16.1
  flutter_page_indicator: ^0.0.3
  flutter_keyboard_visibility: ^3.2.1
  auto_size_text: ^2.1.0
  uuid: ^2.2.0
  flare_flutter: ^2.0.6
  open_file: ^3.0.1
  pretty_dio_logger: ^1.1.1
  flutter_typeahead: ^1.8.8
  flutter_rating_bar: ^3.0.1+1
  cached_network_image: ^2.2.0+1
  firebase_crashlytics: ^0.1.4+1
  firebase_analytics: ^6.0.0
  firebase_remote_config: ^0.4.0
  firebase_dynamic_links: ^0.6.0
  flutter_html: ^1.0.2
  onesignal_flutter: ^2.6.1
  package_info: ^0.4.3
  device_apps: ^1.2.0
  flutter_inappwebview: ^4.0.0+4
  in_app_review: ^0.2.0+3
  flutter_svg: ^0.18.1
  build_resolvers: ^1.3.11
  dart_style: ^1.3.6

dev_dependencies:
  flutter_test:
    sdk: flutter
  hive_generator: ^0.7.1
  build_runner: ^1.10.0
  flutter_native_splash: ^0.1.9
  auto_route_generator: ^0.2.2

dependency_overrides:
  analyzer: 0.39.14

My workaround for flutter 1.20 how generate .g files:

  • Create a new flutter project
  • Copy dart files for hive model to a new project
  • In dev dependencies in new project use build_runner: ^1.10.1 !
  • Run flutter packages pub run build_runner build
  • Copy generated model files back to my project

This workaround did the job for me

I also had to use the same workaround. It would seem that, if making a new project works, it is time to update to the latest project format.
I've been getting warnings during builds... On my todo list.

doesn't work with Flutter 1.20.3 after adding

dependency_overrides:
  analyzer: 0.39.16

also 0.39.14

error message
Failed to precompile build_runner:build_runner: ../../../.pub-cache/hosted/pub.dartlang.org/build_resolvers-1.3.9/lib/src/resolver.dart:340:10: Error: Method not found: 'SummaryBuilder'. return SummaryBuilder(sdkSources, sdk.context).build( ^^^^^^^^^^^^^^

The issue is related to Dart SDK / packages rather than hive.

I had the same issue with analyzer 0.39.14. It is working now with analyzer 0.38.16 and hive_generator 0.7.3 on Flutter 1.22.0.

Can also confirm that this now works correctly for me with the latest version of all applicable packages:

  • analyzer: 0.40.4
  • build_runner: 1.10.3
  • hive_generator: 0.8.1

On the latest Flutter stable version (1.22.2, ref 84f3d28).

  • hive_generator: 0.8.1

Worked for me!

  • hive_generator: 0.8.1

worked for me Too!

updating the packages(i.e hive, hive_flutter) to latest version solved the infinite loop issue

Was this page helpful?
0 / 5 - 0 ratings

Related issues

azilvl picture azilvl  Â·  3Comments

kaboc picture kaboc  Â·  3Comments

NourEldinShobier picture NourEldinShobier  Â·  3Comments

juandiago picture juandiago  Â·  4Comments

Hopheylalal picture Hopheylalal  Â·  4Comments