fastlane-plugin-automated_test_emulator_run 0.5.8 → 0.5.9
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9912fbd88e2f018289b433fd2add1f923f8b268a
|
4
|
+
data.tar.gz: 2454e62ef7b1c73c9b6a763e01f8959a616434bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94ade3063a0a3d85d65b5e4d24b18f678bf943129d7c0ef8feb68136fac111124f43ac6ecf08d0de4d00a9557d0cf57651ac6a60753bec74d4381d31065ed436
|
7
|
+
data.tar.gz: fb83e20890f99b36f83bb8a73e250d43764d6bf0fd24611efc9cea951ef632db4227afeaa7008ed45ac875eafaf7686b4aa586ade300655e032228eb16b01377
|
data/lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb
CHANGED
@@ -109,8 +109,8 @@ module Fastlane
|
|
109
109
|
startParams = "#{params[:avd_start_options]}"
|
110
110
|
|
111
111
|
if startParams.include? "-no-window"
|
112
|
-
Action.sh("adb wait-for-device")
|
113
|
-
Action.sh("adb devices")
|
112
|
+
Action.sh(sdkRoot + "/platform-tools/adb wait-for-device")
|
113
|
+
Action.sh(sdkRoot + "/platform-tools/adb devices")
|
114
114
|
return true
|
115
115
|
else
|
116
116
|
timeoutInSeconds= 180.0
|
@@ -123,7 +123,7 @@ module Fastlane
|
|
123
123
|
|
124
124
|
if (currentTime - startTime) >= timeoutInSeconds
|
125
125
|
UI.message("Emulator loading took more than 3 minutes. Restarting emulator launch until.".yellow)
|
126
|
-
adb_devices_result = Action.sh("adb devices")
|
126
|
+
adb_devices_result = Action.sh(sdkRoot + "/platform-tools/adb devices")
|
127
127
|
if adb_devices_result.include? "device offline"
|
128
128
|
launchEmulator(start_avd_command, sdkRoot, port, params)
|
129
129
|
break
|