Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit da88418

Browse files
committed
Update build code formatter init
1 parent 66f8616 commit da88418

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ VERSION_FILE = Fastlane::Wpmreleasetoolkit::Versioning::AndroidVersionFile.new(v
1919

2020
VERSION_CALCULATOR = Fastlane::Wpmreleasetoolkit::Versioning::SemanticVersionCalculator.new
2121
VERSION_FORMATTER = Fastlane::Wpmreleasetoolkit::Versioning::RCNotationVersionFormatter.new
22-
# Using DerivedBuildCodeFormatter to derive build codes from version name (format: 1XXYYZZNNN)
22+
# Using DerivedBuildCodeFormatter to derive build codes from version name (format: 1XXYYYZNN)
2323
# This eliminates the need for manual build code incrementing and provides deterministic versioning
24-
BUILD_CODE_FORMATTER = Fastlane::Wpmreleasetoolkit::Versioning::DerivedBuildCodeFormatter.new
24+
BUILD_CODE_FORMATTER = Fastlane::Wpmreleasetoolkit::Versioning::DerivedBuildCodeFormatter.new(prefix: '1', major_digits: 2, minor_digits: 3, patch_digits: 1, build_digits: 2)
2525

2626
PROTOTYPE_BUILD_DOMAIN = 'https://cdn.a8c-ci.services'
2727
RELEASE_BUILD_TYPE = 'Release'

0 commit comments

Comments
 (0)