fastlane/lib/fastlane/actions/gradle.rb in fastlane-2.101.1 vs fastlane/lib/fastlane/actions/gradle.rb in fastlane-2.102.0
- old
+ new
@@ -105,10 +105,10 @@
description: 'The gradle task you want to execute, e.g. `assemble` or `test`. For tasks such as `assembleMyFlavorRelease` you should use gradle(task: \'assemble\', flavor: \'Myflavor\', build_type: \'Release\')',
optional: false,
is_string: true),
FastlaneCore::ConfigItem.new(key: :flavor,
env_name: 'FL_GRADLE_FLAVOR',
- description: 'The flavor that you want the task for, e.g. `MyFlavor`. If you are running the `assemble` task in a multi-flavor project, and you rely on Actions.lane_context[Actions.SharedValues::GRADLE_APK_OUTPUT_PATH] then you must specify a flavor here or else this value will be undefined',
+ description: 'The flavor that you want the task for, e.g. `MyFlavor`. If you are running the `assemble` task in a multi-flavor project, and you rely on Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH] then you must specify a flavor here or else this value will be undefined',
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :build_type,
env_name: 'FL_GRADLE_BUILD_TYPE',
description: 'The build type that you want the task for, e.g. `Release`. Useful for some tasks such as `assemble`',