fastlane-plugin-android_emulator_kami 1.0.1 → 1.0.3
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/{android_emulator.rb → android_emulator_kami.rb} +3 -3
- data/lib/fastlane/plugin/{android_emulator → android_emulator_kami}/actions/android_emulator_action.rb +14 -2
- data/lib/fastlane/plugin/{android_emulator → android_emulator_kami}/helper/android_emulator_helper.rb +1 -1
- data/lib/fastlane/plugin/android_emulator_kami/version.rb +5 -0
- metadata +5 -5
- data/lib/fastlane/plugin/android_emulator/version.rb +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc498287d6deef8860628a45af1bdf3865b742c6c14ae9a76c10afe91fddba61
|
4
|
+
data.tar.gz: 8800c9ad8e7718377b637e2d01d10796f43775b43d4fdf364760ae5e01562734
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 107e96cc34433c6b6e7f6d418c1fae920fb5895d900beab7c99301f3a77b35816331b404a1ee3e288eb127a4cd7cf19fc103b05c468d48757562176f294c1e2c
|
7
|
+
data.tar.gz: fad3316a4b8e4812d3edd20be992f6c8c05bcc3dbb77ab67b152e7b5c0b96c9e3ac489e26f6938dd80b30bb8578cb395ebeadb189ea7f8a8f65c7addaea797e8
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require 'fastlane/plugin/
|
1
|
+
require 'fastlane/plugin/android_emulator_kami/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
4
|
+
module AndroidEmulatorKami
|
5
5
|
# Return all .rb files inside the "actions" and "helper" directory
|
6
6
|
def self.all_classes
|
7
7
|
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
@@ -11,6 +11,6 @@ end
|
|
11
11
|
|
12
12
|
# By default we want to import all available actions and helpers
|
13
13
|
# A plugin can contain any number of actions and plugins
|
14
|
-
Fastlane::
|
14
|
+
Fastlane::AndroidEmulatorKami.all_classes.each do |current|
|
15
15
|
require current
|
16
16
|
end
|
@@ -3,7 +3,7 @@ require_relative '../helper/android_emulator_helper'
|
|
3
3
|
|
4
4
|
module Fastlane
|
5
5
|
module Actions
|
6
|
-
class
|
6
|
+
class AndroidEmulatorKamiAction < Action
|
7
7
|
def self.run(params)
|
8
8
|
sdk_dir = params[:sdk_dir]
|
9
9
|
port = params[:port]
|
@@ -114,7 +114,19 @@ module Fastlane
|
|
114
114
|
env_name: "AVD_DEMO_MODE",
|
115
115
|
description: "Set the emulator in demo mode",
|
116
116
|
is_string: false,
|
117
|
-
default_value: true)
|
117
|
+
default_value: true),
|
118
|
+
FastlaneCore::ConfigItem.new(key: :resolution_width,
|
119
|
+
env_name: "AVD_RESOLUTION_WIDTH",
|
120
|
+
description: "Resolution of avd width",
|
121
|
+
default_value: "1080",
|
122
|
+
optional: true),
|
123
|
+
FastlaneCore::ConfigItem.new(key: :resolution_height,
|
124
|
+
env_name: "AVD_RESOLUTION_HEIGHT",
|
125
|
+
description: "Resolution of avd height",
|
126
|
+
default_value: "1920",
|
127
|
+
optional: true)
|
128
|
+
|
129
|
+
|
118
130
|
]
|
119
131
|
end
|
120
132
|
|
@@ -4,7 +4,7 @@ module Fastlane
|
|
4
4
|
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
5
|
|
6
6
|
module Helper
|
7
|
-
class
|
7
|
+
class AndroidEmulatorKamiHelper
|
8
8
|
# class methods that you define here become available in your action
|
9
9
|
# as `Helper::AndroidEmulatorHelper.your_method`
|
10
10
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-android_emulator_kami
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Ruhl
|
@@ -144,10 +144,10 @@ extra_rdoc_files: []
|
|
144
144
|
files:
|
145
145
|
- LICENSE
|
146
146
|
- README.md
|
147
|
-
- lib/fastlane/plugin/
|
148
|
-
- lib/fastlane/plugin/
|
149
|
-
- lib/fastlane/plugin/
|
150
|
-
- lib/fastlane/plugin/
|
147
|
+
- lib/fastlane/plugin/android_emulator_kami.rb
|
148
|
+
- lib/fastlane/plugin/android_emulator_kami/actions/android_emulator_action.rb
|
149
|
+
- lib/fastlane/plugin/android_emulator_kami/helper/android_emulator_helper.rb
|
150
|
+
- lib/fastlane/plugin/android_emulator_kami/version.rb
|
151
151
|
homepage: https://github.com/knaeckeKami/fastlane-plugin-android_emulator
|
152
152
|
licenses:
|
153
153
|
- MIT
|