diff --git a/Gemfile.lock b/Gemfile.lock index a4c79778..26788305 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index 9a7dd221..2029ef8f 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -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") diff --git a/android/fastlane/README.md b/android/fastlane/README.md index 18f05e09..b925fd02 100644 --- a/android/fastlane/README.md +++ b/android/fastlane/README.md @@ -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 diff --git a/android/fastlane/report.xml b/android/fastlane/report.xml index 36206176..51edf49b 100644 --- a/android/fastlane/report.xml +++ b/android/fastlane/report.xml @@ -5,12 +5,12 @@ - + - + diff --git a/pubspec.yaml b/pubspec.yaml index 69c6161e..15287aae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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'