Skip to content

Commit

Permalink
fix!
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed May 29, 2022
1 parent 5f8fc04 commit 52ee2f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
14 changes: 3 additions & 11 deletions android/fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,13 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do

## Android

### android beta
### android internal

```sh
[bundle exec] fastlane android beta
[bundle exec] fastlane android internal
```

Deploy a new beta version to Google Play

### android prod

```sh
[bundle exec] fastlane android prod
```

Deploy a new production version to the Google Play
Deploy a new internal version to Google Play

----

Expand Down
9 changes: 6 additions & 3 deletions tools/get_highest_build_number.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ def get_highest_build_number(

def get_version_code(track:, package_name:, json_key:)
begin
return google_play_track_version_codes(
codes = google_play_track_version_codes(
track: track,
package_name: package_name,
json_key: google_play_json_key_path,
).max
json_key: json_key,
)

return codes.max
rescue
puts "Version code not found for track #{track}"
return 0
end
end

0 comments on commit 52ee2f1

Please sign in to comment.