Reputation: 15374
I am putting together a Gradle task that will start an Android device using Genymotion. The task does launch the emulator but hangs at this stage:
Building 0% > :startEmulator
How do I tell it to continue once the emulator has launched? My task looks like:
task startEmulator(type: Exec) {
executable 'sh'
args "-c", "/Applications/Genymotion.app/Contents/MacOS/player.app/Contents/MacOS/player --vm-name 'Google Nexus 6P - 7.0.0 - API 24 - 1440x2560'"
}
Upvotes: 0
Views: 245