File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -82,20 +82,28 @@ android {
82
82
}
83
83
}
84
84
85
- task stripTestOnlyNormalDebug << {
86
- stripTestOnlyForBuild(" normal" , " debug" )
85
+ task stripTestOnlyNormalDebug {
86
+ doLast {
87
+ stripTestOnlyForBuild(" normal" , " debug" )
88
+ }
87
89
}
88
90
89
- task stripTestOnlyNormalRelease << {
90
- stripTestOnlyForBuild(" normal" , " release" )
91
+ task stripTestOnlyNormalRelease {
92
+ doLast {
93
+ stripTestOnlyForBuild(" normal" , " release" )
94
+ }
91
95
}
92
96
93
- task stripTestOnlyReplicaDebug << {
94
- stripTestOnlyForBuild(" replica" , " debug" )
97
+ task stripTestOnlyReplicaDebug {
98
+ doLast {
99
+ stripTestOnlyForBuild(" replica" , " debug" )
100
+ }
95
101
}
96
102
97
- task stripTestOnlyReplicaRelease << {
98
- stripTestOnlyForBuild(" replica" , " release" )
103
+ task stripTestOnlyReplicaRelease {
104
+ doLast {
105
+ stripTestOnlyForBuild(" replica" , " release" )
106
+ }
99
107
}
100
108
101
109
tasks. whenTaskAdded { task ->
You can’t perform that action at this time.
0 commit comments