fastlane-plugin-automated_test_emulator_run 0.5.9 → 0.5.10
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: 5021ad96595fa165a103388965ae0f0cf42790e9
|
4
|
+
data.tar.gz: 4786bc5646eadc974cf7b61bd830ffe7be688fe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dc5be6a161be7378f3d08e9d5a5beb4766ab5c7b848720a216309d59309170d92ff6a91da56cf2895d9088a0698bc8df7182a0ae72d2cbafbedd1115229fdfe
|
7
|
+
data.tar.gz: 4d7a172a913f9c485281c9cf9d56a4e6a48a0bc2cc74544557766df8b24a1d4999e9cf60119137e56cb1d668f88e5851181d8ecaeadf8f4ec92d5ed414909f0b
|
data/lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb
CHANGED
@@ -124,7 +124,7 @@ module Fastlane
|
|
124
124
|
if (currentTime - startTime) >= timeoutInSeconds
|
125
125
|
UI.message("Emulator loading took more than 3 minutes. Restarting emulator launch until.".yellow)
|
126
126
|
adb_devices_result = Action.sh(sdkRoot + "/platform-tools/adb devices")
|
127
|
-
if adb_devices_result.include? "
|
127
|
+
if adb_devices_result.include? ["/platform-tools/adb -s emulator-", port, " offline"].join("")
|
128
128
|
launchEmulator(start_avd_command, sdkRoot, port, params)
|
129
129
|
break
|
130
130
|
end
|