hey everyone, i’m getting this weird error ```Exe...
# compose-ios
h
hey everyone, i’m getting this weird error
Copy code
Execution failed for task ':shared:syncComposeResourcesForIos'.
> Cannot query the value of this provider because it has no value available.
2
In my shared build.gradle I have
Copy code
//<https://youtrack.jetbrains.com/issue/KT-71675>
tasks.findByName("checkSandboxAndWriteProtection")?.dependsOn("syncComposeResourcesForIos")


targets.withType<KotlinNativeTarget>().configureEach {
    binaries.framework {
        isStatic = true
        baseName = "SharedKt"
    }
}
and also in my project
Copy code
ENABLE_USER_SCRIPT_SANDBOXING = NO;
kotlin
Copy code
2.1.0-Beta1
with CMP 1.7.0
if i run the iOS app through Android studio, everything works, but I need to implement something on the iOS side and this fails