AndroidFirebaseAppDistributionCommand constructor
AndroidFirebaseAppDistributionCommand()
Implementation
AndroidFirebaseAppDistributionCommand() {
argParser
..addOption(
'firebaseAppId',
help: 'Firebase app ID',
mandatory: true,
)
..addOption(
'serviceAccount',
help: 'Firebase service account',
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(
'testerGroups',
help: 'Tester groups',
mandatory: true,
);
}