Hi! I want to understand just if I’m completely un...
# touchlab-tools
i
Hi! I want to understand just if I’m completely unable to do it, because as soon as I add the plugin skie to my gradle in the sharedmodule and configure it with the lines:
Copy code
skie {
features {
        group {
         co.touchlab.skie.configuration.FlowInterop.Enabled(true)
        }
    }
}
I get the message in Xcode while building: Command PhaseScriptExecution failed with a nonzero exit code…. Without any log… Is there anything I’m missing? Thanks in advance
f
Hi! We’ll need to get to the error log in order to determine what is wrong. The easiest way is to call the Gradle task manually from IDEA or terminal. However, you will likely need to call a slightly different task than what is called from Xcode (that depends on your project setup). The task that we need to call will be named something like
linkDebug....
(for example:
linkDebugFrameworkIosArm64
) and will be located in the module where you applied SKIE. Depending on your setup there might be more tasks with this name - it shouldn’t matter which one we try first. To get a full stacktrace you need to append
--stacktrace
argument to the command.
i
I bet it was something related to the caching options in my gradle.properties, as soon as I got rid of them everything worked correctly......