File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ def isWinOs = System.properties['os.name'].toLowerCase().contains('windows')
22def runOnDevice = project. hasProperty(" runOnDevice" );
33def runOnDeviceOrEmulator = runOnDevice ? " -d" : " -e" ;
44
5- task deleteDist (type : Delete ) {
6- doFirst {
7- delete " $rootDir /dist"
8- }
9- }
5+ // task deleteDist(type: Delete) {
6+ // doFirst {
7+ // delete "$rootDir/dist"
8+ // }
9+ // }
1010
1111task waitForEmulatorToStart (type : Exec ) {
1212 doFirst {
@@ -97,7 +97,7 @@ task deleteRootLevelResult(type: Delete) {
9797}
9898
9999
100- waitForEmulatorToStart. dependsOn(deleteDist)
100+ // waitForEmulatorToStart.dependsOn(deleteDist)
101101runAdbAsRoot. dependsOn(waitForEmulatorToStart)
102102deletePreviousResultXml. dependsOn(runAdbAsRoot)
103103installApk. dependsOn(deletePreviousResultXml)
You can’t perform that action at this time.
0 commit comments