fastlane-plugin-android_emulator_kami 1.0.1 → 1.0.3

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: e531052b418fe1a5a340d5b00535ef6d373e412f366c401d9476e760e553348a
4
- data.tar.gz: 3993dfe13e497584bf73e4f98b43ab58d5e71ae68b3da023e9d7809530ed3af9
3
+ metadata.gz: dc498287d6deef8860628a45af1bdf3865b742c6c14ae9a76c10afe91fddba61
4
+ data.tar.gz: 8800c9ad8e7718377b637e2d01d10796f43775b43d4fdf364760ae5e01562734
5
5
  SHA512:
6
- metadata.gz: 96d48d2b0131a0c9d01639730e1702da9deccc1ff517c7aab9d7bdac7c50793c6c36aa09823311c1c455eae6c8682ddd03dd8513622f288f98e30aa004afbb7f
7
- data.tar.gz: 3fd73e072974f5536e44d2aa5591cd9c7465db19d402fc41412eb0fb30dd1b038ea25ea3323b1aa337fe791c63ae8509701a880bc98f2c5c6380e006712f1cf7
6
+ metadata.gz: 107e96cc34433c6b6e7f6d418c1fae920fb5895d900beab7c99301f3a77b35816331b404a1ee3e288eb127a4cd7cf19fc103b05c468d48757562176f294c1e2c
7
+ data.tar.gz: fad3316a4b8e4812d3edd20be992f6c8c05bcc3dbb77ab67b152e7b5c0b96c9e3ac489e26f6938dd80b30bb8578cb395ebeadb189ea7f8a8f65c7addaea797e8
@@ -1,7 +1,7 @@
1
- require 'fastlane/plugin/android_emulator/version'
1
+ require 'fastlane/plugin/android_emulator_kami/version'
2
2
 
3
3
  module Fastlane
4
- module AndroidEmulator
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::AndroidEmulator.all_classes.each do |current|
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 AndroidEmulatorAction < Action
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 AndroidEmulatorHelper
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
  #
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module AndroidEmulatorKami
3
+ VERSION = "1.0.3"
4
+ end
5
+ end
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.1
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/android_emulator.rb
148
- - lib/fastlane/plugin/android_emulator/actions/android_emulator_action.rb
149
- - lib/fastlane/plugin/android_emulator/helper/android_emulator_helper.rb
150
- - lib/fastlane/plugin/android_emulator/version.rb
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
@@ -1,5 +0,0 @@
1
- module Fastlane
2
- module AndroidEmulator
3
- VERSION = "1.0.1"
4
- end
5
- end