fastlane-plugin-latest_play_store_version_code 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f04f7bd1be5f2eaed4f8928943577b8b82b4cf7abfb69a55b35de3d07c02349
|
|
4
|
+
data.tar.gz: 12fe8eda7b4cca82daf3efc314b2ad92ce5cf32c4e402153f22adb8192cf9c34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97290a1d2e1c73f6343b3f9b5d07012caabb4f2e877f5364c05138d59c2b793972c60a93e98c5d7c2349a90c3852cd01be4649b1317e37de159ca6ada1cb7f8c
|
|
7
|
+
data.tar.gz: 7799adfdbbfa4f48a001857550b1c709a5cc00e1bcee33399a4ebbfc92526a47c5814ad691998f2c70bf5e28e17281ac6369c2a32386dbbabfcccfc7fa5f77f3
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
require 'fastlane/action'
|
|
2
|
-
require_relative '../helper/latest_play_store_version_code_helper'
|
|
3
2
|
|
|
4
3
|
module Fastlane
|
|
5
4
|
module Actions
|
|
@@ -75,7 +74,7 @@ module Fastlane
|
|
|
75
74
|
require 'supply/options'
|
|
76
75
|
options = Supply::Options.available_options.clone
|
|
77
76
|
|
|
78
|
-
options_to_keep = [:package_name, :track, :json_key, :json_key_data, :root_url, :timeout]
|
|
77
|
+
options_to_keep = [:package_name, :track, :json_key, :json_key_data, :key, :issuer, :root_url, :timeout]
|
|
79
78
|
options.delete_if { |option| options_to_keep.include?(option.key) == false }
|
|
80
79
|
|
|
81
80
|
options << FastlaneCore::ConfigItem.new(key: :release_name,
|
|
@@ -83,10 +82,10 @@ module Fastlane
|
|
|
83
82
|
description: "The release name whose latest version code we want",
|
|
84
83
|
optional: true)
|
|
85
84
|
options << FastlaneCore::ConfigItem.new(key: :initial_version_code,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
85
|
+
env_name: "INITIAL_VERSION_CODE",
|
|
86
|
+
description: "sets the version code to given value if no release is found",
|
|
87
|
+
default_value: 1,
|
|
88
|
+
skip_type_validation: true) # allow Integer, String
|
|
90
89
|
end
|
|
91
90
|
|
|
92
91
|
def self.output
|