Bump version

This commit is contained in:
Roland Geider
2021-04-07 14:27:58 +02:00
parent f29cada757
commit e5b8e07549
5 changed files with 39 additions and 40 deletions

View File

@@ -7,8 +7,8 @@ GEM
artifactory (3.0.15)
atomos (0.1.3)
aws-eventstream (1.1.1)
aws-partitions (1.432.0)
aws-sdk-core (3.113.0)
aws-partitions (1.441.0)
aws-sdk-core (3.113.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.239.0)
aws-sigv4 (~> 1.1)
@@ -16,7 +16,7 @@ GEM
aws-sdk-kms (1.43.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.91.0)
aws-sdk-s3 (1.93.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.1)
@@ -48,7 +48,7 @@ GEM
faraday_middleware (1.0.0)
faraday (~> 1.0)
fastimage (2.2.3)
fastlane (2.178.0)
fastlane (2.179.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.3, < 3.0.0)
artifactory (~> 3.0)
@@ -105,7 +105,7 @@ GEM
rexml
signet (~> 0.14)
webrick
google-apis-iamcredentials_v1 (0.2.0)
google-apis-iamcredentials_v1 (0.3.0)
google-apis-core (~> 0.1)
google-apis-storage_v1 (0.3.0)
google-apis-core (~> 0.1)
@@ -123,7 +123,7 @@ GEM
google-cloud-core (~> 1.2)
googleauth (~> 0.9)
mini_mime (~> 1.0)
googleauth (0.16.0)
googleauth (0.16.1)
faraday (>= 0.17.3, < 2.0)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
@@ -139,7 +139,7 @@ GEM
jwt (2.2.2)
memoist (0.16.2)
mini_magick (4.11.0)
mini_mime (1.0.2)
mini_mime (1.1.0)
multi_json (1.15.0)
multipart-post (2.0.0)
nanaimo (0.3.0)
@@ -153,7 +153,7 @@ GEM
declarative-option (< 0.2.0)
uber (< 0.2.0)
retriable (3.1.2)
rexml (3.2.4)
rexml (3.2.5)
rouge (2.0.7)
ruby2_keywords (0.0.4)
rubyzip (2.3.0)

View File

@@ -25,8 +25,27 @@ end
platform :android do
desc "Upload closed alpha app and update store entry"
lane :updateclosed_alpha do
desc "Upload app to production"
lane :production do
begin
# gradle(
# task: 'assemble',
# build_type: 'Release'
#)
upload_to_play_store(
track: 'production',
aab: '../build/app/outputs/bundle/release/app-release.aab',
skip_upload_metadata: false,
skip_upload_images: false,
skip_upload_screenshots: true,
release_status: "completed", #"draft",
)
end
end
desc "Upload closed alpha app and update store entry"
lane :update_alpha do
begin
upload_to_play_store(
track: 'alpha',
@@ -39,21 +58,6 @@ desc "Upload closed alpha app and update store entry"
end
end
desc "Runs all the tests"
lane :test do
gradle(task: "test")
end
desc "Submit a new Beta Build to Crashlytics Beta"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics
# sh "your_script.sh"
# You can also use other beta testing services here
end
desc "Deploy a new version to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")

View File

@@ -24,21 +24,16 @@ fastlane playstore
----
## Android
### android updateclosed_alpha
### android production
```
fastlane android updateclosed_alpha
fastlane android production
```
Upload app to production
### android update_alpha
```
fastlane android update_alpha
```
Upload closed alpha app and update store entry
### android test
```
fastlane android test
```
Runs all the tests
### android beta
```
fastlane android beta
```
Submit a new Beta Build to Crashlytics Beta
### android deploy
```
fastlane android deploy

View File

@@ -5,12 +5,12 @@
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.0022505">
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.0022186">
</testcase>
<testcase classname="fastlane.lanes" name="1: upload_to_play_store" time="44.4966676">
<testcase classname="fastlane.lanes" name="1: upload_to_play_store" time="68.3333626">
</testcase>

View File

@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.1.0+7
version: 0.2.0+8
environment:
sdk: '>=2.12.0 <3.0.0'