We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87dc12c commit 44db460Copy full SHA for 44db460
examples/SampleApp/android/build.gradle
@@ -33,13 +33,10 @@ ext.REACT_NATIVE_WORKLETS_NODE_MODULES_DIR =
33
subprojects { subproject ->
34
if (subproject.path != ":app") {
35
evaluationDependsOn(":app")
36
- }
37
-
38
- subproject.tasks.matching { it.name == "generateCodegenArtifactsFromSchema" }.configureEach { codegenTask ->
39
project(":app").tasks.matching { task ->
40
task.name.startsWith("configureCMake")
41
}.configureEach {
42
- dependsOn(codegenTask)
+ dependsOn(subproject.tasks.matching { it.name == "preBuild" })
43
}
44
45
0 commit comments