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 e792efa commit 8c5d66dCopy full SHA for 8c5d66d
android/build.gradle
@@ -280,7 +280,7 @@ dependencies {
280
}
281
282
283
-task prepareHeaders(type: Copy) {
+tasks.register('prepareHeaders', Copy) {
284
from('../cpp')
285
include "**/*.h"
286
into "${project.buildDir}/headers/op-sqlite/op-engineering_op-sqlite/"
@@ -290,7 +290,7 @@ task prepareHeaders(type: Copy) {
290
preBuild.dependsOn(prepareHeaders)
291
292
// Resolves "LOCAL_SRC_FILES points to a missing file, Check that libfb.so exists or that its path is correct".
293
-tasks.whenTaskAdded { task ->
+tasks.configureEach { task ->
294
if (task.name.contains("configureCMakeDebug")) {
295
rootProject.getTasksByName("packageReactNdkDebugLibs", true).forEach {
296
task.dependsOn(it)
0 commit comments