2
0
mirror of synced 2025-02-23 14:58:12 +00:00

misc/androidstudio: drop the clean task to fix Android Studio gradle sync

Suggestion from

https://github.com/golang/go/issues/23307#issuecomment-368162189

I've manually verified in Android Studio that removing the clean task
does fix the issue reported in golang/go#25290.

Fixes golang/go#25290.
Fixes golang/go#23307.

Change-Id: Ic1a8c240fc8e4c4aaf59977fd559dd221ff605b1
Reviewed-on: https://go-review.googlesource.com/112455
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
Elias Naur 2018-05-09 18:51:14 +02:00
parent c909788f99
commit 5a56f36813

View File

@ -65,10 +65,6 @@ class GobindPlugin implements Plugin<Project> {
'mylib',
null,
gomobileTask))
Task cleanTask = project.tasks.create("clean", {
project.delete(project.name+".aar")
})
}
private static void handleVariant(Project project, def variant) {