Hello, a big tip about the completion issue with X...
# ios
f
Hello, a big tip about the completion issue with Xcode. If you’re using custom Xcode configuration (more than Debug/Release), it’s breaking SOURCE_KIT. For fixing this issue, add next to your Compile Kotlin Framework - Build phase. •
cd "${SRCROOT}/../shared/build/xcode-frameworks/"
(or any other path to the shared framework •
ln -Fs "${CONFIGURATION}" "Debug"
A Debug directory is mandatory for SOURCE_KIT to work!
🚀 3