Running ./gradlew androidStoriesRun for a multiplatform android app, I noticed that the code calls a task that does not exist anywhere in the repo.
|
dependsOn(":generateResourceAccessorsForCommonStories") |
target.compilations
.matching { it.name == StorytaleGradlePlugin.STORYTALE_EXEC_SUFFIX }
.configureEach {
associateWith(target.compilations.getByName("debug"))
compileTaskProvider.configure {
dependsOn(generatorTask)
dependsOn(":generateResourceAccessorsForCommonStories") <------ this does not seem to exist anywhere
}
}