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')
2
2
def runOnDevice = project. hasProperty(" runOnDevice" );
3
3
def runOnDeviceOrEmulator = runOnDevice ? " -d" : " -e" ;
4
4
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
+ // }
10
10
11
11
task waitForEmulatorToStart (type : Exec ) {
12
12
doFirst {
@@ -97,7 +97,7 @@ task deleteRootLevelResult(type: Delete) {
97
97
}
98
98
99
99
100
- waitForEmulatorToStart. dependsOn(deleteDist)
100
+ // waitForEmulatorToStart.dependsOn(deleteDist)
101
101
runAdbAsRoot. dependsOn(waitForEmulatorToStart)
102
102
deletePreviousResultXml. dependsOn(runAdbAsRoot)
103
103
installApk. dependsOn(deletePreviousResultXml)
You can’t perform that action at this time.
0 commit comments