Skip to content

Commit

Permalink
Fix google play version code checking in fastlane.
Browse files Browse the repository at this point in the history
  • Loading branch information
TammiLion committed Jun 25, 2024
1 parent ec681bf commit 763c4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ platform :android do
amplitude_key = ENV['AMPLITUDE_KEY']
stripe_pk = ENV['STRIPE_PK']
stripe_merchant_id = ENV['STRIPE_MERCHANT_ID']
build_number = google_play_track_version_codes(package_name: package_name, track: 'production', json_key_data: ENV['GOOGLE_PLAY_JSON_KEY'])[0] + 1
build_number = google_play_track_version_codes(package_name: package_name, track: track, json_key_data: ENV['GOOGLE_PLAY_JSON_KEY'])[0] + 1

Dir.chdir "../.." do
sh("flutter", "packages", "get")
Expand Down

0 comments on commit 763c4e2

Please sign in to comment.