fastlane-plugin-apadmi_grout 2.3.1 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 057b6fbd946ea3c41cd4d444fd00bb1a4f40ee48e30e878016304c68b42089d8
4
- data.tar.gz: abd2f3609fd6656873a14a4efcd5775c1ecb315bbde9419bddcfe40ead6bc709
3
+ metadata.gz: 6b8c872e4f4905d3774429543e1d27a947e0a8d1932bc4284a2c779e4895e2dd
4
+ data.tar.gz: ca1558676102c0a06065fe46d9215fd231875dd2c0e0fc03043a3085f460d2f4
5
5
  SHA512:
6
- metadata.gz: 5c5c4e67a30bfcb6a5a8eb97f5a19f23c598c1b679492e51c84a1b7345694c1e23e5a9db72be83e360dd4d466bc4406d6ee5d67d22cbf2f5a3b956e4b2dff313
7
- data.tar.gz: c93367d52af8479de1417337f592474f9a10c5f3cd1be4a413575e2974db99f698753619ae97a26bad4b8cdbff10510af60fdf80124cfe93634e7317634988f8
6
+ metadata.gz: efa9e272a5e4e023f446cace85440596c7fea8f50487d750dbe08cb0d412c54e721b770592313e0be7c9691a49eb5c2e5f7aa127127effb78b0c509a2e7c4ba6
7
+ data.tar.gz: 735fce7da1c88fe3967bf68020dd24b4eb97aa8139962297d133125e3db40e558f3401b0c4c9fe4af32de613e8c7c0c4fd3d573e2f811566039743238c5b7a09
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Fastlane Plugin Changelog
2
2
 
3
+ ## [2.3.2] - 2023-04-06
4
+ * Add build variant suffix to android artifact names to reduce the chance of conflicting file names.
5
+ * Bump core library version dependency
6
+
3
7
  ## [2.3.1] - 2023-04-05
4
8
  * Fix issue with apk generation where path was returned incorrectly
5
9
  * Bump core library version dependency
@@ -14,13 +14,15 @@ module Fastlane
14
14
  def self.run(params)
15
15
  logger = FastLane::FastlaneLogger.new
16
16
 
17
- build_type = Apadmi::Grout::CommandParsingUtils.determining_build_type(params[:gradle_command])
17
+ build_type = Apadmi::Grout::CommandParsingUtils.determine_build_type(params[:gradle_command])
18
+ variant = Apadmi::Grout::CommandParsingUtils.determine_variant(params[:gradle_command])
18
19
  output_name = params[:output_name] || Apadmi::Grout::FilenameUtils.binary_output_filename(
19
20
  client_name: params[:client_name],
20
21
  product_name: params[:product_name],
21
22
  platform: "Android",
22
23
  version: params[:version],
23
- build_number: params[:build_number]
24
+ build_number: params[:build_number],
25
+ suffix: variant
24
26
  ) + ".#{build_type}"
25
27
 
26
28
  logger.message("Generating #{build_type}: #{output_name}")
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module ApadmiGrout
5
- VERSION = "2.3.1"
5
+ VERSION = "2.3.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-apadmi_grout
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apadmi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-05 00:00:00.000000000 Z
11
+ date: 2023-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apadmi_grout