AndroidGooglePlayCommand constructor

AndroidGooglePlayCommand()

Implementation

AndroidGooglePlayCommand() {
  argParser
    ..addOption(
      'serviceAccount',
      help: 'Google Play service account JSON',
      mandatory: true,
    )
    ..addOption(
      'buildOptions',
      help: 'Build options',
      mandatory: true,
    )
    ..addOption(
      'storePassword',
      help: 'Store password',
      mandatory: true,
    )
    ..addOption(
      'keyPassword',
      help: 'Key password',
      mandatory: true,
    )
    ..addOption(
      'keyAlias',
      help: 'Key alias',
      mandatory: true,
    )
    ..addOption(
      'storeFile',
      help: 'Store file',
      mandatory: true,
    )
    ..addOption(
      'flutterVersion',
      help: 'Flutter version',
      mandatory: true,
    )
    ..addFlag(
      'allowAssetDiffs',
      help: 'Allow asset diffs',
    );
}