fastlane-plugin-automated_test_emulator_run 1.2.4 → 1.2.5

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
  SHA1:
3
- metadata.gz: d807d474f4db1dc81eb9d1d2f58e26746099da6b
4
- data.tar.gz: d08ee214e0bbdc4feada34e87445a934a5adae8c
3
+ metadata.gz: b0b41f282ec94d6e3796e999d7b058594f2f186d
4
+ data.tar.gz: f7f35df05f34c069407f8cbd177bd4d32ed214a8
5
5
  SHA512:
6
- metadata.gz: 118e6f40e3b5b9904a03b5a38aad20884f02bd629219ea9f9577ab8faa500eed0a970360f4a077b074f334ad53e61f9acde0e938a4659985eecaba7155b139a2
7
- data.tar.gz: 0357ce6073ec18a46dde9720f451cf459dacca9441a5265698aacf0bc2b80277495a471124d69803d6d34b4297e363028b570c449962a1676538abece549b08e
6
+ metadata.gz: 3a62db10f96d4904e54af359e88a68bd1d0d94cb58e3ff046c3f4587a9f6b02e2c7530c8a2061a5013a6deabb10e63a9c1581d50ec23388ee7ecd274dc0b5fbb
7
+ data.tar.gz: e6d3c072218321f5c941d6d3f854fb4d7ef4fd9145bdd9d642f4b7e78d4bf4ff00b261b13f379355f8ea5c9cb5c9c5775257539f77761d66c56bbf08489cb13c
@@ -268,8 +268,8 @@ module Fastlane
268
268
  FastlaneCore::ConfigItem.new(key: :AVD_path,
269
269
  env_name: "AVD_PATH",
270
270
  description: "The path to your android AVD directory (root). HOME/.android/avd by default",
271
- is_string: true,
272
271
  default_value: ENV['HOME'] + '/.android/avd',
272
+ is_string: true,
273
273
  optional: true),
274
274
  FastlaneCore::ConfigItem.new(key: :AVD_setup_path,
275
275
  env_name: "AVD_SETUP_PATH",
@@ -279,8 +279,8 @@ module Fastlane
279
279
  FastlaneCore::ConfigItem.new(key: :SDK_path,
280
280
  env_name: "SDK_PATH",
281
281
  description: "The path to your android sdk directory (root). ANDROID_HOME by default",
282
- is_string: true,
283
282
  default_value: ENV['ANDROID_HOME'],
283
+ is_string: true,
284
284
  optional: true),
285
285
 
286
286
 
@@ -288,44 +288,46 @@ module Fastlane
288
288
  FastlaneCore::ConfigItem.new(key: :AVD_param_launch_timeout,
289
289
  env_name: "AVD_PARAM_LAUNCH_TIMEOUT",
290
290
  description: "Timeout in seconds. Even though ADB might find all devices you still might want to wait for animations to finish and system to boot. Default 60 seconds",
291
- is_string: true,
292
291
  default_value: 60,
292
+ is_string: true,
293
293
  optional: true),
294
294
  FastlaneCore::ConfigItem.new(key: :AVD_adb_launch_timeout,
295
295
  env_name: "AVD_ADB_LAUNCH_TIMEOUT",
296
296
  description: "Timeout in seconds. Wait until ADB finds all devices specified in config and sets their value to 'device'. Default 240 seconds",
297
- is_string: true,
298
297
  default_value: 240,
298
+ is_string: true,
299
299
  optional: true),
300
300
  FastlaneCore::ConfigItem.new(key: :AVD_recreate_new,
301
301
  env_name: "AVD_RECREATE_NEW",
302
302
  description: "Allow to decide if AVDs from AVD_setup.json (in case they already exist) should be deleted and created from scratch",
303
303
  default_value: true,
304
+ is_string: false,
304
305
  optional: true),
305
306
  FastlaneCore::ConfigItem.new(key: :AVD_clean_after,
306
307
  env_name: "AVD_CLEAN_AFTER",
307
308
  description: "Allow to decide if AVDs should be deleted from PC after test session ends",
308
309
  default_value: true,
310
+ is_string: false,
309
311
  optional: true),
310
312
 
311
313
  #launch commands
312
314
  FastlaneCore::ConfigItem.new(key: :shell_task,
313
315
  env_name: "SHELL_TASK",
314
316
  description: "The shell command you want to execute",
315
- is_string: true,
316
317
  conflicting_options: [:gradle_task],
318
+ is_string: true,
317
319
  optional: true),
318
320
  FastlaneCore::ConfigItem.new(key: :gradle_task,
319
321
  env_name: "GRADLE_TASK",
320
322
  description: "The gradle task you want to execute",
321
- is_string: true,
322
323
  conflicting_options: [:shell_command],
324
+ is_string: true,
323
325
  optional: true),
324
326
  FastlaneCore::ConfigItem.new(key: :gradle_flags,
325
327
  env_name: "GRADLE_FLAGS",
326
328
  description: "All parameter flags you want to pass to the gradle command, e.g. `--exitcode --xml file.xml`",
327
- optional: true,
328
329
  conflicting_options: [:shell_command],
330
+ optional: true,
329
331
  is_string: true),
330
332
 
331
333
  #mode
@@ -333,6 +335,7 @@ module Fastlane
333
335
  env_name: "AVD_VERBOSE",
334
336
  description: "Allows to turn on/off mode verbose which displays output of AVDs",
335
337
  default_value: false,
338
+ is_string: false,
336
339
  optional: true),
337
340
  ]
338
341
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AutomatedTestEmulatorRun
3
- VERSION = "1.2.4"
3
+ VERSION = "1.2.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-automated_test_emulator_run
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kamil Krzyk