Unable to build for iOS device due to Facebook plugin

Hello,

I am using Corona SDK version 2016.2949 (2016.9.15).

While building my application for device, I am getting error (Please check the below Screenshot-1 for the same). The log I am getting is:

<result>sh: /Volumes/Mac: No such file or directory</result>

ERROR: Builder failed: sh: /Volumes/Mac: No such file or directory

BUILD ERROR: There was a problem linking the app.

Check the console for more information.

iOS build failed (12) after 60 seconds

ERROR: Build Failed: There was a problem linking the app.

When I searched about this error, many people suggested to remove the below code from build.settings and then build:

plugins = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; ["plugin.facebook.v4"] = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; publisherId = "com.coronalabs" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; },

After removing this code and building the app, works fine.

When I install the application on my device, by the .app I got, I am getting Runtime error related to Facebook plugin (Please check the below Screenshot-2 for the same).

So when I add the plugin, it is not able to build. And when I remove the plugin, it is giving me Runtime error.

I am not getting, how I can check the Facebook functionality in my application as the same problem I am facing in Corona SDK Sample Facebook Application.

Please suggest.

Thanks in advance.

Can you please post your build screen without the red boxes (when you include the plugin). The second screen is due to you not including the plugin in your build.settings.

Thanks

Rob

Okay. Please check the below build.settings code.

settings = { &nbsp; &nbsp; plugins = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; ["plugin.facebook.v4"] = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; publisherId = "com.coronalabs" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; }, &nbsp; &nbsp; orientation = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; default = "landscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; supported = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "landscapeLeft", "landscapeRight" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; }, &nbsp; &nbsp; iphone = { &nbsp; &nbsp; &nbsp; &nbsp; plist = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSAppTransportSecurity = { NSAllowsArbitraryLoads=true }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSLocationAlwaysUsageDescription = { "" }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSLocationWhenInUseUsageDescription = { "" }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UIStatusBarHidden = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UIPrerenderedIcon = true, -- set to false for "shine" overlay &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleVersion = "1.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleIdentifier="com.abc.\*", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleIconFile = "Icon.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MinimumOSVersion = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleIconFiles = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon@2x.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon-72.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon-72@2x.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UIApplicationExitsOnSuspend = false, &nbsp; &nbsp;-- must be false for single sign-on to work &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FacebookAppID = "XXXXXXXXX", &nbsp;-- replace XXXXXXXXX with your facebook appId &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleURLTypes = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleURLSchemes = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbXXXXXXXXX", &nbsp; &nbsp;-- replace XXXXXXXXX with your facebook appId &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- Whitelist Facebook Servers for Network Requests &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSAppTransportSecurity = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionDomains = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["fbcdn.net"] = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSIncludesSubdomains = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionRequiresForwardSecrecy = false, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["facebook.com"] = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSIncludesSubdomains = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionRequiresForwardSecrecy = false, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["akamaihd.net"] = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSIncludesSubdomains = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionRequiresForwardSecrecy = false, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- Whitelist Facebook Apps &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LSApplicationQueriesSchemes = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fb", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20130214", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20130410", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20140410", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20140116", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20150313", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20150629", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbauth", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbauth2", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fb-messenger-api20140430", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UILaunchImages = { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 4 LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{320, 480}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 5 LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default-568h", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{320, 568}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 6 LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default-667h", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{375, 667}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 6 Plus LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default-Landscape-736h", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{414, 736}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; }, &nbsp; &nbsp; -- Android permissions &nbsp; &nbsp; android = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; facebookAppId = "XXXXXXXXX", &nbsp;-- Replace XXXXXXXXXX with your Facebook App ID &nbsp; &nbsp; }, &nbsp; &nbsp; androidPermissions = { &nbsp; &nbsp; &nbsp; &nbsp; "android.permission.INTERNET", &nbsp; &nbsp; }, }

See this error:  ERROR: Builder failed: sh: /Volumes/Mac: No such file or directory

This is why I want to see your build dialog without any thing being blocked out with the red blocks. I need to see your paths and such.  Please post the requested screen shot. If you’re not comfortable making it live (and there really is no reason not to), you can email it to me at rob AT coronalabs.com

Rob

Okay thanks. I mailed you regarding the same.

Looking forward for your response and support.

Thanks in advance.

Hello Rob,

I mailed you same on :

rob@coronalabs.com

 

Please check the below output from console I am getting while building my application:

 

Quote

Quote

NightBeforeChristmas!.app/

NightBeforeChristmas!.app/CoronaSDK3rdPartyLicenses.txt

NightBeforeChristmas!.app/MainWindow.nib/

NightBeforeChristmas!.app/MainWindow.nib/runtime.nib

NightBeforeChristmas!.app/MainWindow.nib/objects.nib

NightBeforeChristmas!.app/_CodeSignature/

NightBeforeChristmas!.app/_CodeSignature/CodeResources

NightBeforeChristmas!.app/_CoronaSplashScreen.png

NightBeforeChristmas!.app/.build/

NightBeforeChristmas!.app/.build/libtemplate/

NightBeforeChristmas!.app/.build/libtemplate/Builder.lua

NightBeforeChristmas!.app/.build/libtemplate/libtemplate.a

NightBeforeChristmas!.app/.build/libtemplate/Defaults.lua

NightBeforeChristmas!.app/.build/libtemplate/BuilderUtils.lua

NightBeforeChristmas!.app/.build/libtemplate/build.lua

NightBeforeChristmas!.app/.build/plugin.facebook.v4/

NightBeforeChristmas!.app/.build/plugin.facebook.v4/metadata.lua

NightBeforeChristmas!.app/.build/plugin.facebook.v4/libfacebook.a

NightBeforeChristmas!.app/PkgInfo

NightBeforeChristmas!.app/CoronaResources.bundle/

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_light.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_light@4x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios7@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_pickerWheel_mask.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_light@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_dark.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_dark@4x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_onOff_mask.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios7.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios7@4x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_dark@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/Info.plist

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_onOff_mask_android_holo.png

NightBeforeChristmas!.app/MainWindow-iPad.nib/

NightBeforeChristmas!.app/MainWindow-iPad.nib/runtime.nib

NightBeforeChristmas!.app/MainWindow-iPad.nib/objects.nib

NightBeforeChristmas!.app/embedded.mobileprovision

NightBeforeChristmas!.app/Default-568h@2x.png

NightBeforeChristmas!.app/resource.car

NightBeforeChristmas!.app/Info.plist

Using additional build settings from: /Users/akshada/Documents/Projects_SVN/Corona/Night Before Christmas!/build.settings

Contents of ZIP file from server:

Building: Unpacking build from server

Server dir name: NightBeforeChristmas!.app

Server app name: NightBeforeChristmas! (local name: Night Before Christmas!)

Building: Adding plugins

builder: buildOptions: {

  “dstDir”:"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app",

  “dstName”:“Night Before Christmas!”,

  “dstPath”:"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/Night Before Christmas!",

  “librarySearchPaths”:["/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build/libtemplate"],

  “pluginsDir”:"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build",

  “settings”:{

    “androidPermissions”:[“android.permission.INTERNET”],

    “iphone”:{

      “plist”:{

        “UIApplicationExitsOnSuspend”:false,

        “UILaunchImages”:[{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{320, 480}",

            “UILaunchImageName”:“Default”

          },{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{320, 568}",

            “UILaunchImageName”:“Default-568h”

          },{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{375, 667}",

            “UILaunchImageName”:“Default-667h”

          },{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{414, 736}",

            “UILaunchImageName”:“Default-Landscape-736h”

          }],

        “CFBundleVersion”:“1.0”,

        “LSApplicationQueriesSchemes”:[“fb”,“fbapi20130214”,“fbapi20130410”,“fbapi20140410”,“fbapi20140116”,“fbapi20150313”,“fbapi20150629”,“fbauth”,“fbauth2”,“fb-messenger-api20140430”],

        “NSAppTransportSecurity”:{

          “NSExceptionDomains”:{

            “fbcdn.net”:{

              “NSIncludesSubdomains”:true,

              “NSExceptionRequiresForwardSecrecy”:false

            },

            “facebook.com”:{

              “NSIncludesSubdomains”:true,

              “NSExceptionRequiresForwardSecrecy”:false

            },

            “akamaihd.net”:{

              “NSIncludesSubdomains”:true,

              “NSExceptionRequiresForwardSecrecy”:false

            }

          }

        },

        “UIPrerenderedIcon”:true,

        “NSLocationWhenInUseUsageDescription”:[""],

        “FacebookAppID”:“1403030199938241”,

        “UIStatusBarHidden”:true,

        “CFBundleIconFiles”:[“Icon.png”,“Icon@2x.png”,“Icon-72.png”,“Icon-72@2x.png”],

        “MinimumOSVersion”:“8.0”,

        “NSLocationAlwaysUsageDescription”:[""],

        “CFBundleIconFile”:“Icon.png”,

        “CFBundleIdentifier”:“com.systematixindia.*”,

        “CFBundleURLTypes”:[{

            “CFBundleURLSchemes”:[“fb1403030199938241”]

          }]

      }

    },

    “plugins”:{

      “plugin.facebook.v4”:{

        “publisherId”:“com.coronalabs”

      }

    },

    “android”:{

      “facebookAppId”:“1403030199938241”

    },

    “orientation”:{

      “default”:“landscapeRight”,

      “supported”:[“landscapeLeft”,“landscapeRight”]

    }

  },

  “tmpDir”:"/var/folders/_d/jyhvzh0j6fg0qccb2jbjmch40000gn/T/CLtmpE0PrzD",

  “verbose”:0

}

Analyzing plugins…

Done.

Compiling Slices…

Compiling architecture: armv7

<execute>cd “/var/folders/_d/jyhvzh0j6fg0qccb2jbjmch40000gn/T/CLtmpE0PrzD/armv7”;unset LIBRARY_PATH; export IPHONEOS_DEPLOYMENT_TARGET=8.0; export PATH="/Volumes/Mac Data/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/:/Volumes/Mac Data/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin";/Volumes/Mac Data/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -stdlib=libstdc++ -arch armv7 -isysroot /Volumes/Mac Data/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk -ObjC -all_load -fobjc-link-runtime -miphoneos-version-min=8.0 -L"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build/libtemplate" -L"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build/plugin.facebook.v4" -framework AudioToolbox -framework AVFoundation -framework CFNetwork -framework CoreGraphics -framework CoreLocation -framework CoreMedia -framework CoreMotion -framework CoreVideo -framework CoreText -framework GameKit -framework GLKit -framework ImageIO -framework MapKit -framework MediaPlayer -framework MessageUI -framework MobileCoreServices -framework OpenAL -framework OpenGLES -framework QuartzCore -framework Security -framework StoreKit -framework SystemConfiguration -framework UIKit -framework Accounts -weak_framework GameController -weak_framework AssetsLibrary -weak_framework Photos -weak_framework Foundation -weak_framework Twitter -lobjc -lsqlite3 -ltemplate -lfacebook -o “/var/folders/_d/jyhvzh0j6fg0qccb2jbjmch40000gn/T/CLtmpE0PrzD/armv7/Night Before Christmas!”</execute>

<result>sh: /Volumes/Mac: No such file or directory</result>

ERROR: Builder failed: sh: /Volumes/Mac: No such file or directory

BUILD ERROR: There was a problem linking the app.

Check the console for more information.

iOS build failed (12) after 126 seconds

ERROR: Build Failed: There was a problem linking the app.

Check the console for more information.

 

Also check the attached screenshot that you asked (without blocking).

 

I am unable to detect the problem till now. 

 

Please help.

 

Thanks in advance.

I’ve asked Engineering to look into this.

Rob

You are encountering a bug because you have Xcode installed into a folder with a space in the file name. You have a couple of choices.

A. Install Xcode in /Applications where the OS expects it (Recommended)

B. Rename the second hard drive volume to remove the space.

Rob

Can you please post your build screen without the red boxes (when you include the plugin). The second screen is due to you not including the plugin in your build.settings.

Thanks

Rob

Okay. Please check the below build.settings code.

settings = { &nbsp; &nbsp; plugins = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; ["plugin.facebook.v4"] = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; publisherId = "com.coronalabs" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; }, &nbsp; &nbsp; orientation = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; default = "landscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; supported = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "landscapeLeft", "landscapeRight" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; }, &nbsp; &nbsp; iphone = { &nbsp; &nbsp; &nbsp; &nbsp; plist = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSAppTransportSecurity = { NSAllowsArbitraryLoads=true }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSLocationAlwaysUsageDescription = { "" }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSLocationWhenInUseUsageDescription = { "" }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UIStatusBarHidden = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UIPrerenderedIcon = true, -- set to false for "shine" overlay &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleVersion = "1.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleIdentifier="com.abc.\*", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleIconFile = "Icon.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MinimumOSVersion = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleIconFiles = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon@2x.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon-72.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "Icon-72@2x.png", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UIApplicationExitsOnSuspend = false, &nbsp; &nbsp;-- must be false for single sign-on to work &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FacebookAppID = "XXXXXXXXX", &nbsp;-- replace XXXXXXXXX with your facebook appId &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleURLTypes = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CFBundleURLSchemes = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbXXXXXXXXX", &nbsp; &nbsp;-- replace XXXXXXXXX with your facebook appId &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- Whitelist Facebook Servers for Network Requests &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSAppTransportSecurity = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionDomains = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["fbcdn.net"] = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSIncludesSubdomains = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionRequiresForwardSecrecy = false, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["facebook.com"] = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSIncludesSubdomains = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionRequiresForwardSecrecy = false, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["akamaihd.net"] = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSIncludesSubdomains = true, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NSExceptionRequiresForwardSecrecy = false, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- Whitelist Facebook Apps &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LSApplicationQueriesSchemes = &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fb", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20130214", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20130410", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20140410", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20140116", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20150313", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbapi20150629", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbauth", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fbauth2", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "fb-messenger-api20140430", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UILaunchImages = { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 4 LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{320, 480}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 5 LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default-568h", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{320, 568}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 6 LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default-667h", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{375, 667}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;-- iPhone 6 Plus LandscapeRight &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageMinimumOSVersion"] = "8.0", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageName"] = "Default-Landscape-736h", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageOrientation"] = "LandscapeRight", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ["UILaunchImageSize"] = "{414, 736}" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; }, &nbsp; &nbsp; -- Android permissions &nbsp; &nbsp; android = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; facebookAppId = "XXXXXXXXX", &nbsp;-- Replace XXXXXXXXXX with your Facebook App ID &nbsp; &nbsp; }, &nbsp; &nbsp; androidPermissions = { &nbsp; &nbsp; &nbsp; &nbsp; "android.permission.INTERNET", &nbsp; &nbsp; }, }

See this error:  ERROR: Builder failed: sh: /Volumes/Mac: No such file or directory

This is why I want to see your build dialog without any thing being blocked out with the red blocks. I need to see your paths and such.  Please post the requested screen shot. If you’re not comfortable making it live (and there really is no reason not to), you can email it to me at rob AT coronalabs.com

Rob

Okay thanks. I mailed you regarding the same.

Looking forward for your response and support.

Thanks in advance.

Hello Rob,

I mailed you same on :

rob@coronalabs.com

 

Please check the below output from console I am getting while building my application:

 

Quote

Quote

NightBeforeChristmas!.app/

NightBeforeChristmas!.app/CoronaSDK3rdPartyLicenses.txt

NightBeforeChristmas!.app/MainWindow.nib/

NightBeforeChristmas!.app/MainWindow.nib/runtime.nib

NightBeforeChristmas!.app/MainWindow.nib/objects.nib

NightBeforeChristmas!.app/_CodeSignature/

NightBeforeChristmas!.app/_CodeSignature/CodeResources

NightBeforeChristmas!.app/_CoronaSplashScreen.png

NightBeforeChristmas!.app/.build/

NightBeforeChristmas!.app/.build/libtemplate/

NightBeforeChristmas!.app/.build/libtemplate/Builder.lua

NightBeforeChristmas!.app/.build/libtemplate/libtemplate.a

NightBeforeChristmas!.app/.build/libtemplate/Defaults.lua

NightBeforeChristmas!.app/.build/libtemplate/BuilderUtils.lua

NightBeforeChristmas!.app/.build/libtemplate/build.lua

NightBeforeChristmas!.app/.build/plugin.facebook.v4/

NightBeforeChristmas!.app/.build/plugin.facebook.v4/metadata.lua

NightBeforeChristmas!.app/.build/plugin.facebook.v4/libfacebook.a

NightBeforeChristmas!.app/PkgInfo

NightBeforeChristmas!.app/CoronaResources.bundle/

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_light.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_light@4x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios7@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_pickerWheel_mask.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_light@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_dark.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_dark@4x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_onOff_mask.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios7.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_ios7@4x.png

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_android_holo_dark@2x.png

NightBeforeChristmas!.app/CoronaResources.bundle/Info.plist

NightBeforeChristmas!.app/CoronaResources.bundle/widget_theme_onOff_mask_android_holo.png

NightBeforeChristmas!.app/MainWindow-iPad.nib/

NightBeforeChristmas!.app/MainWindow-iPad.nib/runtime.nib

NightBeforeChristmas!.app/MainWindow-iPad.nib/objects.nib

NightBeforeChristmas!.app/embedded.mobileprovision

NightBeforeChristmas!.app/Default-568h@2x.png

NightBeforeChristmas!.app/resource.car

NightBeforeChristmas!.app/Info.plist

Using additional build settings from: /Users/akshada/Documents/Projects_SVN/Corona/Night Before Christmas!/build.settings

Contents of ZIP file from server:

Building: Unpacking build from server

Server dir name: NightBeforeChristmas!.app

Server app name: NightBeforeChristmas! (local name: Night Before Christmas!)

Building: Adding plugins

builder: buildOptions: {

  “dstDir”:"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app",

  “dstName”:“Night Before Christmas!”,

  “dstPath”:"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/Night Before Christmas!",

  “librarySearchPaths”:["/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build/libtemplate"],

  “pluginsDir”:"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build",

  “settings”:{

    “androidPermissions”:[“android.permission.INTERNET”],

    “iphone”:{

      “plist”:{

        “UIApplicationExitsOnSuspend”:false,

        “UILaunchImages”:[{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{320, 480}",

            “UILaunchImageName”:“Default”

          },{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{320, 568}",

            “UILaunchImageName”:“Default-568h”

          },{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{375, 667}",

            “UILaunchImageName”:“Default-667h”

          },{

            “UILaunchImageOrientation”:“LandscapeRight”,

            “UILaunchImageMinimumOSVersion”:“8.0”,

            “UILaunchImageSize”:"{414, 736}",

            “UILaunchImageName”:“Default-Landscape-736h”

          }],

        “CFBundleVersion”:“1.0”,

        “LSApplicationQueriesSchemes”:[“fb”,“fbapi20130214”,“fbapi20130410”,“fbapi20140410”,“fbapi20140116”,“fbapi20150313”,“fbapi20150629”,“fbauth”,“fbauth2”,“fb-messenger-api20140430”],

        “NSAppTransportSecurity”:{

          “NSExceptionDomains”:{

            “fbcdn.net”:{

              “NSIncludesSubdomains”:true,

              “NSExceptionRequiresForwardSecrecy”:false

            },

            “facebook.com”:{

              “NSIncludesSubdomains”:true,

              “NSExceptionRequiresForwardSecrecy”:false

            },

            “akamaihd.net”:{

              “NSIncludesSubdomains”:true,

              “NSExceptionRequiresForwardSecrecy”:false

            }

          }

        },

        “UIPrerenderedIcon”:true,

        “NSLocationWhenInUseUsageDescription”:[""],

        “FacebookAppID”:“1403030199938241”,

        “UIStatusBarHidden”:true,

        “CFBundleIconFiles”:[“Icon.png”,“Icon@2x.png”,“Icon-72.png”,“Icon-72@2x.png”],

        “MinimumOSVersion”:“8.0”,

        “NSLocationAlwaysUsageDescription”:[""],

        “CFBundleIconFile”:“Icon.png”,

        “CFBundleIdentifier”:“com.systematixindia.*”,

        “CFBundleURLTypes”:[{

            “CFBundleURLSchemes”:[“fb1403030199938241”]

          }]

      }

    },

    “plugins”:{

      “plugin.facebook.v4”:{

        “publisherId”:“com.coronalabs”

      }

    },

    “android”:{

      “facebookAppId”:“1403030199938241”

    },

    “orientation”:{

      “default”:“landscapeRight”,

      “supported”:[“landscapeLeft”,“landscapeRight”]

    }

  },

  “tmpDir”:"/var/folders/_d/jyhvzh0j6fg0qccb2jbjmch40000gn/T/CLtmpE0PrzD",

  “verbose”:0

}

Analyzing plugins…

Done.

Compiling Slices…

Compiling architecture: armv7

<execute>cd “/var/folders/_d/jyhvzh0j6fg0qccb2jbjmch40000gn/T/CLtmpE0PrzD/armv7”;unset LIBRARY_PATH; export IPHONEOS_DEPLOYMENT_TARGET=8.0; export PATH="/Volumes/Mac Data/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/:/Volumes/Mac Data/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin";/Volumes/Mac Data/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -stdlib=libstdc++ -arch armv7 -isysroot /Volumes/Mac Data/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk -ObjC -all_load -fobjc-link-runtime -miphoneos-version-min=8.0 -L"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build/libtemplate" -L"/Users/akshada/Documents/Projects/Corona/Twas The Night Before Christmas/Build/Night Before Christmas!.app/.build/plugin.facebook.v4" -framework AudioToolbox -framework AVFoundation -framework CFNetwork -framework CoreGraphics -framework CoreLocation -framework CoreMedia -framework CoreMotion -framework CoreVideo -framework CoreText -framework GameKit -framework GLKit -framework ImageIO -framework MapKit -framework MediaPlayer -framework MessageUI -framework MobileCoreServices -framework OpenAL -framework OpenGLES -framework QuartzCore -framework Security -framework StoreKit -framework SystemConfiguration -framework UIKit -framework Accounts -weak_framework GameController -weak_framework AssetsLibrary -weak_framework Photos -weak_framework Foundation -weak_framework Twitter -lobjc -lsqlite3 -ltemplate -lfacebook -o “/var/folders/_d/jyhvzh0j6fg0qccb2jbjmch40000gn/T/CLtmpE0PrzD/armv7/Night Before Christmas!”</execute>

<result>sh: /Volumes/Mac: No such file or directory</result>

ERROR: Builder failed: sh: /Volumes/Mac: No such file or directory

BUILD ERROR: There was a problem linking the app.

Check the console for more information.

iOS build failed (12) after 126 seconds

ERROR: Build Failed: There was a problem linking the app.

Check the console for more information.

 

Also check the attached screenshot that you asked (without blocking).

 

I am unable to detect the problem till now. 

 

Please help.

 

Thanks in advance.

I’ve asked Engineering to look into this.

Rob

You are encountering a bug because you have Xcode installed into a folder with a space in the file name. You have a couple of choices.

A. Install Xcode in /Applications where the OS expects it (Recommended)

B. Rename the second hard drive volume to remove the space.

Rob