fastlane-plugin-bundletool 1.0.0
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +52 -0
- data/lib/fastlane/plugin/bundletool.rb +16 -0
- data/lib/fastlane/plugin/bundletool/actions/bundletool_action.rb +205 -0
- data/lib/fastlane/plugin/bundletool/helper/bundletool_helper.rb +16 -0
- data/lib/fastlane/plugin/bundletool/helper/emojis.rb +23 -0
- data/lib/fastlane/plugin/bundletool/version.rb +5 -0
- metadata +175 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 163f2ddba8e6f8c3aba41b8310aa832d672dd3b93131b1aa3f7accb588721978
|
4
|
+
data.tar.gz: a6cd88f56cea3a410019d6d79f9e437d5d0c92ecbcae556adf506dc1dcfaf693
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c178cd9227ccd548eb83502e68e1283655e288a59d2a5c9ee64bba0b1303d3b48991643b92c4dc51d40d916fca3d078e3c838111cc3cee3a5f7ecfcf86584948
|
7
|
+
data.tar.gz: 533afee2b9cc30b48e5c57585a68845ee646c11b9b75b6e6d712b5b09b917b51810ce30661bd6691b070fd250c76054388c4e00b14d16e826ab7704821e33a49
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Martin Gonzalez <martin.gonzalez@etermax.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# bundletool plugin
|
2
|
+
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-bundletool)
|
4
|
+
|
5
|
+
## Getting Started
|
6
|
+
|
7
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-bundletool`, add it to your project by running:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
fastlane add_plugin bundletool
|
11
|
+
```
|
12
|
+
|
13
|
+
## About bundletool
|
14
|
+
|
15
|
+
Extracts a universal apk from an .aab file
|
16
|
+
|
17
|
+
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
|
+
|
19
|
+
## Example
|
20
|
+
|
21
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
|
+
|
23
|
+
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
|
+
|
25
|
+
## Run tests for this plugin
|
26
|
+
|
27
|
+
To run both the tests, and code style validation, run
|
28
|
+
|
29
|
+
```
|
30
|
+
rake
|
31
|
+
```
|
32
|
+
|
33
|
+
To automatically fix many of the styling issues, use
|
34
|
+
```
|
35
|
+
rubocop -a
|
36
|
+
```
|
37
|
+
|
38
|
+
## Issues and Feedback
|
39
|
+
|
40
|
+
For any other issues and feedback about this plugin, please submit it to this repository.
|
41
|
+
|
42
|
+
## Troubleshooting
|
43
|
+
|
44
|
+
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
45
|
+
|
46
|
+
## Using _fastlane_ Plugins
|
47
|
+
|
48
|
+
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
49
|
+
|
50
|
+
## About _fastlane_
|
51
|
+
|
52
|
+
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane/plugin/bundletool/version'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module Bundletool
|
5
|
+
# Return all .rb files inside the "actions" and "helper" directory
|
6
|
+
def self.all_classes
|
7
|
+
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
# By default we want to import all available actions and helpers
|
13
|
+
# A plugin can contain any number of actions and plugins
|
14
|
+
Fastlane::Bundletool.all_classes.each do |current|
|
15
|
+
require current
|
16
|
+
end
|
@@ -0,0 +1,205 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require_relative '../helper/bundletool_helper'
|
3
|
+
|
4
|
+
module Fastlane
|
5
|
+
module Actions
|
6
|
+
class BundletoolAction < Action
|
7
|
+
def self.run(params)
|
8
|
+
print_params(params)
|
9
|
+
@project_root = Dir.pwd
|
10
|
+
@bundletool_temp_path = "#{@project_root}/bundletool_temp"
|
11
|
+
@verbose = params[:verbose]
|
12
|
+
keystore_info = {}
|
13
|
+
unless (params[:ks_path].nil?)
|
14
|
+
keystore_info[:keystore_path] = params[:ks_path]
|
15
|
+
keystore_info[:keystore_password] = params[:ks_password]
|
16
|
+
keystore_info[:alias] = params[:ks_key_alias]
|
17
|
+
keystore_info[:alias_password] = params[:ks_key_alias_password]
|
18
|
+
end
|
19
|
+
|
20
|
+
bundletool_version = params[:bundletool_version]
|
21
|
+
aab_path = params[:aab_path]
|
22
|
+
output_path = params[:apk_output_path]
|
23
|
+
|
24
|
+
validate_aab!(aab_path)
|
25
|
+
download_bundletool(bundletool_version)
|
26
|
+
extract_universal_apk_from(aab_path, output_path, keystore_info)
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.validate_aab!(aab_path)
|
30
|
+
puts_message('Checking if .aab file exists...')
|
31
|
+
puts_error!(".aab file at #{aab_path} does not exist") unless File.file?(aab_path)
|
32
|
+
puts_success('Checking if .aab file exists')
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.download_bundletool(version)
|
36
|
+
begin
|
37
|
+
puts_message("Downloading bundletool (#{version}) from https://github.com/google/bundletool/releases/download/#{version}/bundletool-all-#{version}.jar...")
|
38
|
+
Dir.mkdir "#{@project_root}/bundletool_temp"
|
39
|
+
open("https://github.com/google/bundletool/releases/download/#{version}/bundletool-all-#{version}.jar") do |bundletool|
|
40
|
+
File.open("#{@bundletool_temp_path}/bundletool.jar", "wb") do |file|
|
41
|
+
file.write(bundletool.read)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
puts_success('Downloading bundletool')
|
45
|
+
rescue StandardError => e
|
46
|
+
puts_error!("Something went wrong when downloading bundletool version #{version}")
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def self.extract_universal_apk_from(aab_path, apk_output_path, keystore_info)
|
51
|
+
begin
|
52
|
+
aab_absolute_path = Pathname.new(File.expand_path(aab_path)).to_s
|
53
|
+
apk_output_absolute_path = Pathname.new(File.expand_path(apk_output_path)).to_s
|
54
|
+
output_path = run_bundletool!(aab_absolute_path, keystore_info)
|
55
|
+
prepare_apk!(output_path, apk_output_absolute_path)
|
56
|
+
rescue StandardError => e
|
57
|
+
puts_error!("Bundletool could not extract universal apk from aab at #{aab_absolute_path}")
|
58
|
+
ensure
|
59
|
+
clean_temp!
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def self.run_bundletool!(aab_path, keystore_info)
|
64
|
+
puts_message("Extracting apk from #{aab_path}...")
|
65
|
+
output_path = "#{@bundletool_temp_path}/output.apks"
|
66
|
+
keystore_params = ''
|
67
|
+
|
68
|
+
unless (keystore_info.empty?)
|
69
|
+
keystore_params = "--ks=#{keystore_info[:keystore_path]} \
|
70
|
+
--ks-pass=pass:#{keystore_info[:keystore_password]} \
|
71
|
+
--ks-key-alias=#{keystore_info[:alias]} \
|
72
|
+
--key-pass=pass:#{keystore_info[:alias_password]}"
|
73
|
+
end
|
74
|
+
|
75
|
+
cmd = "java -jar #{@bundletool_temp_path}/bundletool.jar build-apks \
|
76
|
+
--bundle=#{aab_path} \
|
77
|
+
--output=#{output_path} \
|
78
|
+
--mode=universal \
|
79
|
+
#{keystore_params}"
|
80
|
+
|
81
|
+
Open3.popen3(cmd) do |_, _, stderr, wait_thr|
|
82
|
+
exit_status = wait_thr.value
|
83
|
+
raise stderr.read unless exit_status.success?
|
84
|
+
end
|
85
|
+
puts_success("Extracting apk from #{aab_path}")
|
86
|
+
output_path
|
87
|
+
end
|
88
|
+
|
89
|
+
def self.prepare_apk!(output_path, target_path)
|
90
|
+
puts_message("Preparing apk to #{target_path}...")
|
91
|
+
puts_important("Apk at path #{target_path} exists. Replacing it.") if File.file?(target_path)
|
92
|
+
target_dir_name = File.dirname(target_path)
|
93
|
+
unless Dir.exist?(target_dir_name)
|
94
|
+
puts_important("Creating path #{target_path} since does not exist")
|
95
|
+
Dir.mkdir target_dir_name
|
96
|
+
end
|
97
|
+
cmd = "mv #{output_path} #{@bundletool_temp_path}/output.zip &&
|
98
|
+
unzip #{@bundletool_temp_path}/output.zip -d #{@bundletool_temp_path} &&
|
99
|
+
mv #{@bundletool_temp_path}/universal.apk #{target_path}"
|
100
|
+
Open3.popen3(cmd) do |_, _, stderr, wait_thr|
|
101
|
+
exit_status = wait_thr.value
|
102
|
+
raise stderr.read unless exit_status.success?
|
103
|
+
end
|
104
|
+
puts_success("Preparing apk to #{target_path}")
|
105
|
+
end
|
106
|
+
|
107
|
+
def self.clean_temp!()
|
108
|
+
cmd = "rm -rf #{@project_root}/bundletool_temp"
|
109
|
+
Open3.popen3(cmd) do |_, _, stderr, wait_thr|
|
110
|
+
exit_status = wait_thr.value
|
111
|
+
raise stderr.read unless exit_status.success?
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def self.puts_message(message)
|
116
|
+
UI.message message if @verbose
|
117
|
+
end
|
118
|
+
|
119
|
+
def self.puts_success(message)
|
120
|
+
UI.success "#{message} #{Fastlane::Helper::Emojis.green_checkmark}" if @verbose
|
121
|
+
end
|
122
|
+
|
123
|
+
def self.puts_important(message)
|
124
|
+
UI.important "#{message} #{Fastlane::Helper::Emojis.warning}" if @verbose
|
125
|
+
end
|
126
|
+
|
127
|
+
def self.puts_error!(message)
|
128
|
+
UI.user_error! message
|
129
|
+
end
|
130
|
+
|
131
|
+
def self.available_options
|
132
|
+
[
|
133
|
+
FastlaneCore::ConfigItem.new(key: :ks_path,
|
134
|
+
description: 'Path to .jks file',
|
135
|
+
is_string: true,
|
136
|
+
optional: true),
|
137
|
+
FastlaneCore::ConfigItem.new(key: :ks_password,
|
138
|
+
description: '.jks password',
|
139
|
+
is_string: true,
|
140
|
+
optional: true),
|
141
|
+
FastlaneCore::ConfigItem.new(key: :ks_key_alias,
|
142
|
+
description: 'Alias for jks',
|
143
|
+
is_string: true,
|
144
|
+
optional: true),
|
145
|
+
FastlaneCore::ConfigItem.new(key: :ks_key_alias_password,
|
146
|
+
description: 'Alias password for .jks',
|
147
|
+
is_string: true,
|
148
|
+
optional: true),
|
149
|
+
FastlaneCore::ConfigItem.new(key: :bundletool_version,
|
150
|
+
description: 'Version of bundletool to use, by default 0.11.0 will be used',
|
151
|
+
is_string: true,
|
152
|
+
default_value: '0.11.0'),
|
153
|
+
FastlaneCore::ConfigItem.new(key: :aab_path,
|
154
|
+
description: 'Path where the aab file is',
|
155
|
+
is_string: true,
|
156
|
+
optional: false,
|
157
|
+
verify_block: proc do |value|
|
158
|
+
unless value && !value.empty?
|
159
|
+
UI.user_error!('You must set aab_path.')
|
160
|
+
end
|
161
|
+
end),
|
162
|
+
FastlaneCore::ConfigItem.new(key: :apk_output_path,
|
163
|
+
description: 'Path where the apk file is going to be placed',
|
164
|
+
is_string: true,
|
165
|
+
optional: false,
|
166
|
+
verify_block: proc do |value|
|
167
|
+
unless value && !value.empty?
|
168
|
+
UI.user_error!('You must set apk_output_path.')
|
169
|
+
end
|
170
|
+
end),
|
171
|
+
FastlaneCore::ConfigItem.new(key: :verbose,
|
172
|
+
description: 'Show every messages of the action',
|
173
|
+
is_string: false,
|
174
|
+
type: Boolean,
|
175
|
+
optional: true,
|
176
|
+
default_value: false)
|
177
|
+
|
178
|
+
]
|
179
|
+
end
|
180
|
+
|
181
|
+
def self.print_params(options)
|
182
|
+
table_title = "Params for bundletool #{Fastlane::Bundletool::VERSION}"
|
183
|
+
FastlaneCore::PrintTable.print_values(config: options,
|
184
|
+
mask_keys: [:ks_password, :ks_key_alias_password],
|
185
|
+
title: table_title)
|
186
|
+
end
|
187
|
+
|
188
|
+
def self.description
|
189
|
+
"Extracts an universal apk from an .aab file"
|
190
|
+
end
|
191
|
+
|
192
|
+
def self.authors
|
193
|
+
["Martin Gonzalez"]
|
194
|
+
end
|
195
|
+
|
196
|
+
def self.details
|
197
|
+
"Using the google oficial bundletool to extract an universal apk from .aab file to distribute it"
|
198
|
+
end
|
199
|
+
|
200
|
+
def self.is_supported?(platform)
|
201
|
+
[:android].include?(platform)
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane_core/ui/ui'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
|
+
|
6
|
+
module Helper
|
7
|
+
class BundletoolHelper
|
8
|
+
# class methods that you define here become available in your action
|
9
|
+
# as `Helper::BundletoolHelper.your_method`
|
10
|
+
#
|
11
|
+
def self.show_message
|
12
|
+
UI.message("Hello from the bundletool plugin helper!")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module Helper
|
5
|
+
class Emojis #:nodoc:
|
6
|
+
def self.rocket
|
7
|
+
"🚀"
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.green_checkmark
|
11
|
+
"✅"
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.red_cross
|
15
|
+
"❌"
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.warning
|
19
|
+
"⚠️"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,175 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fastlane-plugin-bundletool
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Martin Gonzalez
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-12-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: pry
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.12.2
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.12.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.4'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.4'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec_junit_formatter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.4.1
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.4.1
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '13.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '13.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.49.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.49.1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-require_tools
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.1.2
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.1.2
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.12.0
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.12.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: fastlane
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 2.137.0
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 2.137.0
|
139
|
+
description:
|
140
|
+
email: gonzalez.martin90@gmail.com
|
141
|
+
executables: []
|
142
|
+
extensions: []
|
143
|
+
extra_rdoc_files: []
|
144
|
+
files:
|
145
|
+
- LICENSE
|
146
|
+
- README.md
|
147
|
+
- lib/fastlane/plugin/bundletool.rb
|
148
|
+
- lib/fastlane/plugin/bundletool/actions/bundletool_action.rb
|
149
|
+
- lib/fastlane/plugin/bundletool/helper/bundletool_helper.rb
|
150
|
+
- lib/fastlane/plugin/bundletool/helper/emojis.rb
|
151
|
+
- lib/fastlane/plugin/bundletool/version.rb
|
152
|
+
homepage: https://github.com/MartinGonzalez/fastlane-plugin-bundletool
|
153
|
+
licenses:
|
154
|
+
- MIT
|
155
|
+
metadata: {}
|
156
|
+
post_install_message:
|
157
|
+
rdoc_options: []
|
158
|
+
require_paths:
|
159
|
+
- lib
|
160
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ">="
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0'
|
165
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: '0'
|
170
|
+
requirements: []
|
171
|
+
rubygems_version: 3.0.3
|
172
|
+
signing_key:
|
173
|
+
specification_version: 4
|
174
|
+
summary: Extracts a universal apk from an .aab file
|
175
|
+
test_files: []
|