web-dev-qa-db-fra.com

flutter pub run build_runner build a échoué

version flottante:

flutter_macos_v1.9.1+hotfix.2-stable

créer un nouveau projet dans le terminal:

flutter create myapp

ouvrez vscode, modifiez pubspec.yaml:

dependencies:
  json_annotation: ^3.0.0

dev_dependencies:
  build_runner: ^1.7.0
  json_serializable: ^3.2.2

obtenir des packages dans le terminal:

flutter pub get

nouveau /lib/user.Dart et remplissez ci-dessous:

import 'package:json_annotation/json_annotation.Dart';

part 'user.g.Dart';

@JsonSerializable()
class User extends Object {
  @JsonKey(name: 'seed')
  String seed;

  @JsonKey(name: 'results')
  int results;

  @JsonKey(name: 'page')
  int page;

  @JsonKey(name: 'version')
  String version;

  User(
    this.seed,
    this.results,
    this.page,
    this.version,
  );

  factory User.fromJson(Map<String, dynamic> srcJson) =>
      _$UserFromJson(srcJson);

  Map<String, dynamic> toJson() => _$UserToJson(this);
}

courir flutter pub run build_runner build dans le terminal:

[INFO] Generating build script...
[INFO] Generating build script completed, took 321ms

[INFO] Creating build script snapshot......
[INFO] Creating build script snapshot... completed, took 10.4s

[INFO] Initializing inputs
[INFO] Building new asset graph...
[INFO] Building new asset graph completed, took 698ms

[INFO] Checking for unexpected pre-existing outputs....
[INFO] Checking for unexpected pre-existing outputs. completed, took 2ms

[INFO] Running build...
[SEVERE] json_serializable:json_serializable on lib/user.Dart:

Invalid argument(s): Path must be absolute : Dart:core
[SEVERE] json_serializable:json_serializable on lib/main.Dart:

Invalid argument(s): Path must be absolute : Dart:core
[SEVERE] json_serializable:json_serializable on test/widget_test.Dart:

Invalid argument(s): Path must be absolute : Dart:core
[INFO] Running build completed, took 1.5s

[INFO] Caching finalized dependency graph...
[INFO] Caching finalized dependency graph completed, took 36ms

[SEVERE] Failed after 1.6s

pourquoi jamais réussi?!

8
Smeegol

On dirait qu'Analyzer le brise, rétrogradant à analyzer: 0.38.2 l'a résolu pour moi.

Source: https://github.com/Dart-lang/sdk/issues/38499#issuecomment-533812652

2
Reda Lazri

J'ai eu le même problème.

Génération réussie de tous les fichiers * .g.Dart avec:

build_runner 0.9.2

json_serializable 0.5.8 + 1

json_annotation 0.2.9 + 1

1
user3297174

Ce n'est peut-être pas le cas dans cette situation, mais j'ai eu un problème similaire causé par la suppression de cette ligne par mon formateur automatique:

part 'my_class.g.Dart';

Une fois que j'ai ajouté cette ligne et exécuté à nouveau la commande, cela a bien fonctionné.

0
Andy