fastlane-plugin-automated_test_emulator_run 0.5.14 → 0.5.15
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2878480f01dea03e22d953710184f5234f91ebbd
|
4
|
+
data.tar.gz: 2c472367f7924a5184b9689a1f69567c109c6e8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09057e4af065dc48a9681e609a753eafdf0758a88b9dccd16c2a159fcd5155e5849d74d1c1e65aca8de78cbd54fbfd9b9165d088af7eb68bd01fc3f14e5fc5ef
|
7
|
+
data.tar.gz: 914cb29c04984a87e3349300325837d35747a03093f4f7cc07cbc5c6a2df4ccd3e517a12903d8302f1ff9e9c868717d85db0cc0ac542a86208f365b5310971e9
|
data/lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb
CHANGED
@@ -52,7 +52,7 @@ module Fastlane
|
|
52
52
|
|
53
53
|
# Recreating AVD
|
54
54
|
UI.message("Creating AVD...".yellow)
|
55
|
-
createEmulator(get_devices_command, create_avd_command, params)
|
55
|
+
createEmulator(get_devices_command, create_avd_command, params, sdkRoot)
|
56
56
|
|
57
57
|
# Starting AVD
|
58
58
|
UI.message("Starting AVD....".yellow)
|
@@ -88,7 +88,7 @@ module Fastlane
|
|
88
88
|
return port
|
89
89
|
end
|
90
90
|
|
91
|
-
def self.createEmulator(get_devices_command, create_avd_command, params)
|
91
|
+
def self.createEmulator(get_devices_command, create_avd_command, params, sdkRoot)
|
92
92
|
UI.message("Getting avaliable devices".yellow)
|
93
93
|
devices = Action.sh(get_devices_command)
|
94
94
|
|
@@ -134,7 +134,7 @@ module Fastlane
|
|
134
134
|
|
135
135
|
delete_emulator(sdkRoot, port, params)
|
136
136
|
|
137
|
-
createEmulator(get_devices_command, create_avd_command, params)
|
137
|
+
createEmulator(get_devices_command, create_avd_command, params, sdkRoot)
|
138
138
|
|
139
139
|
launchEmulator(start_avd_command, sdkRoot, port, params)
|
140
140
|
break
|