We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1698018 commit 5be6ec3Copy full SHA for 5be6ec3
android/fastlane/Fastfile
@@ -56,10 +56,11 @@ platform :android do
56
desc "Build new bundle and upload to Internal track"
57
lane :internal do |options|
58
FileUtils.copy(ORIGINAL_CHANGELOG_PATH, FASTLANE_CHANGELOG_PATH)
59
- #versionCode = google_play_track_version_codes(track: "internal").max() + 1
60
- versionCode = 1
61
- # versionName = GOOGLE_PLAY_VERSION + "." + BUILD_NUMBER
62
- versionName = BUILD_NUMBER
+ versionCode = google_play_track_version_codes(track: "internal").max() + 1
+ versionName = GOOGLE_PLAY_VERSION + "." + BUILD_NUMBER
+ # versionCode = 1
+ # versionName = BUILD_NUMBER
63
+
64
65
gradleOptions = {
66
# Gradle 7.3 removed support for dynamic versioning through android.injected.version.code
0 commit comments