Skip to content

Commit 6aa3ea3

Browse files
committed
chore: rename flavor option to gradleFlavor
1 parent e1d95dc commit 6aa3ea3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/data/build-data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class AndroidBuildData extends BuildData {
6161
this.keyStorePassword = data.keyStorePassword;
6262
this.androidBundle = data.androidBundle || data.aab;
6363
this.buildFilterDevicesArch = !this.androidBundle && data.filterDevicesArch !== false ;
64-
this.gradleFlavor = data.flavor;
64+
this.gradleFlavor = data.gradleFlavor;
6565
this.gradlePath = data.gradlePath;
6666
this.gradleArgs = data.gradleArgs;
6767
}

lib/options.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export class Options {
219219
default: false,
220220
hasSensitiveValue: false,
221221
},
222-
flavor: { type: OptionType.String, hasSensitiveValue: false },
222+
gradleFlavor: { type: OptionType.String, hasSensitiveValue: false },
223223
gradlePath: { type: OptionType.String, hasSensitiveValue: false },
224224
gradleArgs: { type: OptionType.String, hasSensitiveValue: false, array: true },
225225
aab: { type: OptionType.Boolean, hasSensitiveValue: false },

0 commit comments

Comments
 (0)