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 b712390 commit c55e286Copy full SHA for c55e286
app/src/processing/app/gradle/GradleService.kt
@@ -34,6 +34,12 @@ class GradleService(
34
val active = mutableStateOf(Preferences.getBoolean("run.use_gradle"))
35
36
var sketch: Sketch? = null
37
+ set (value) {
38
+ field = value
39
+ if(value == null) return
40
+ // If the sketch is set, we start the build process to speed up the first run
41
+ startJob("build")
42
+ }
43
44
val jobs = mutableStateListOf<GradleJob>()
45
val workingDir = createTempDirectory()
0 commit comments