I am using windows solely and I have everything set up. But when I sent my build to app connect, I received this email saying that the error is with .../unityframeworks.frameworks...
This has to do with swift and their embed code.
However, I'm dealing with this on windows remember, not on mac. So I can't go on xcode and just do it solely.
I found this script and put it in prebuild and tried post build scripts;
#!/bin/bash
echo "Checking nested framework"
cd "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Frameworks/UnityFramework.framework/"
if [[ -d "Frameworks" ]]; then
rm -fr Frameworks
echo "Removed Framework directory in /Frameworks/UnityFramework.framework/"
fi
↧