fastlane-plugin-firebase_app_distribution 0.3.5 → 0.3.6
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 +4 -4
- data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb +1 -0
- data/lib/fastlane/plugin/firebase_app_distribution/client/firebase_app_distribution_api_client.rb +1 -0
- data/lib/fastlane/plugin/firebase_app_distribution/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbab06941b8df52d0959f4792a5414de798b9038f89c8774b5e35afd57019729
|
|
4
|
+
data.tar.gz: 4b64872b0d8bc723fcb85bdf31d447bfd0ac001595c27e2209faa792d31a79ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27fc550a02fad5d23cca0ac7abf1b1787df45ff01facf402a1a64bff6d1489c61058e1a92a78027779f0ef2f55308dab59a87052ad326ef8ce050a643cc65c3c
|
|
7
|
+
data.tar.gz: 862ccc4890c1f7c76ae2c1491da5c039551de3c016e405052f3487b702fcdf897dad14ae0513c70b79e657d61abbd397b7c66b1969685808d1c3c73f60e94ff5
|
data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb
CHANGED
|
@@ -189,6 +189,7 @@ module Fastlane
|
|
|
189
189
|
verify_block: proc do |value|
|
|
190
190
|
UI.user_error!("firebase_app_distribution: '#{value}' is not a valid value for android_artifact_type. Should be 'APK' or 'AAB'") unless ['APK', 'AAB'].include?(value)
|
|
191
191
|
end),
|
|
192
|
+
# Generic
|
|
192
193
|
FastlaneCore::ConfigItem.new(key: :app,
|
|
193
194
|
env_name: "FIREBASEAPPDISTRO_APP",
|
|
194
195
|
description: "Your app's Firebase App ID. You can find the App ID in the Firebase console, on the General Settings page",
|
data/lib/fastlane/plugin/firebase_app_distribution/client/firebase_app_distribution_api_client.rb
CHANGED
|
@@ -110,6 +110,7 @@ module Fastlane
|
|
|
110
110
|
# Throws a user_error if the binary file does not exist
|
|
111
111
|
def upload_binary(app_name, binary_path, platform)
|
|
112
112
|
response = connection.post(binary_upload_url(app_name), read_binary(binary_path)) do |request|
|
|
113
|
+
request.options.timeout = 300 # seconds
|
|
113
114
|
request.headers[AUTHORIZATION] = "Bearer " + @auth_token
|
|
114
115
|
request.headers[CONTENT_TYPE] = APPLICATION_OCTET_STREAM
|
|
115
116
|
request.headers[CLIENT_VERSION] = client_version_header_value
|
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-firebase_app_distribution
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Natchev
|
|
8
8
|
- Manny Jimenez
|
|
9
9
|
- Alonso Salas Infante
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-09-09 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: pry
|
|
@@ -138,7 +138,7 @@ dependencies:
|
|
|
138
138
|
- - ">="
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: 2.127.1
|
|
141
|
-
description:
|
|
141
|
+
description:
|
|
142
142
|
email:
|
|
143
143
|
- snatchev@google.com
|
|
144
144
|
- mannyjimenez@google.com
|
|
@@ -168,7 +168,7 @@ homepage: https://github.com/fastlane/fastlane-plugin-firebase_app_distribution
|
|
|
168
168
|
licenses:
|
|
169
169
|
- MIT
|
|
170
170
|
metadata: {}
|
|
171
|
-
post_install_message:
|
|
171
|
+
post_install_message:
|
|
172
172
|
rdoc_options: []
|
|
173
173
|
require_paths:
|
|
174
174
|
- lib
|
|
@@ -183,8 +183,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
183
183
|
- !ruby/object:Gem::Version
|
|
184
184
|
version: '0'
|
|
185
185
|
requirements: []
|
|
186
|
-
rubygems_version: 3.
|
|
187
|
-
signing_key:
|
|
186
|
+
rubygems_version: 3.1.6
|
|
187
|
+
signing_key:
|
|
188
188
|
specification_version: 4
|
|
189
189
|
summary: Release your beta builds to Firebase App Distribution. https://firebase.google.com/docs/app-distribution
|
|
190
190
|
test_files: []
|