We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d4e7e commit d65c21cCopy full SHA for d65c21c
smoke-tests/build.gradle
@@ -12,6 +12,10 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
+import java.nio.file.Files
16
+import java.nio.file.Path
17
+import java.nio.file.Paths
18
+
19
buildscript {
20
repositories {
21
google()
@@ -114,4 +118,12 @@ dependencies {
114
118
storageImplementation "com.google.firebase:firebase-storage"
115
119
}
116
120
121
+clean.doLast {
122
+ def paths = Files.newDirectoryStream(Paths.get("."), "build-*")
123
124
+ for (Path path : paths) {
125
+ project.delete "$path/"
126
+ }
127
+}
128
117
129
apply plugin: "com.google.gms.google-services"
0 commit comments