You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The below-given error will be displayed when you try to build an app for release while using Xcode
didiff: /../Podfile.lock: No such file or directory
didiff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
Workaround
To workaround this behavior you could follow the below-described steps.
remove platforms folder from the project -> rm -rf platforms
run tns prepare ios command
cd platforms/ios
run pod install
open with Xcode <project_folder>/platforms/ios/<project_name>.xcworkspace file
open the project Build Settings
scroll down to the end of the file and look for PODS_ROOT
the final steps is to copy the path from Debug flag and to set the set the same path for Release.
The text was updated successfully, but these errors were encountered:
I can confirm that the same errors still appear with CLI 3.4.2Xcode 9.2cocoapods 1.4.0. Used nativescript-iqkeyboardmanager plugin to test it.
diff: /Podfile.lock: No such file or directory
diff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
The below-given error will be displayed when you try to build an app for release while using Xcode
Workaround
To workaround this behavior you could follow the below-described steps.
rm -rf platforms
tns prepare ios
commandcd platforms/ios
pod install
<project_folder>/platforms/ios/<project_name>.xcworkspace
fileBuild Settings
PODS_ROOT
Debug
flag and to set the set the same path forRelease
.The text was updated successfully, but these errors were encountered: