I found that you need to edit project.pbxproj
to include these lines:
E0F2945D18DC83D9006CC8FE - your target identifier
in / * Start the PBXNativeTarget section * /
update build phases:
buildPhases = ( E0F2928A18DC83D9006CC8FE , E0F2928A18DC83D9006CC8FE , E0F2930018DC83D9006CC8FE , E0F2932118DC83D9006CC8FE , E0F2945D18DC83D9006CC8FE , E0F2945E18DC83D9006CC8FE , E0F2945E18DC83D9006CC8FE , );
then
E0F2945D18DC83D9006CC8FE = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = ""; }; E0F2945D18DC83D9006CC8FE = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Copy Pods Resources"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Pods-resources.sh\"\n"; showEnvVarsInLog = 0; }; E0F2945D18DC83D9006CC8FE = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Check Pods Manifest.lock"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; };
Kiddo
source share