I am working on an ARKit app in Xcode9 (the last beta before the GM). I've imported the mesh model, and then attached a png image as my material. When compiling, it gives me this error, "Command /usr/bin/codesign failed with exit code 1." If I take off the image and just make the whole mesh a color, it compiles fine and the app augments the model perfectly. Has anyone else come across this while using ARKit?
Xcode9 codesign error when using ARKit
243 Views Asked by JbClie At
1
There are 1 best solutions below
Related Questions in COMPILER-ERRORS
- os kern error : "ld: symbol(s) not found for architecture x86_64"
- Double templated function overload fails
- Why does gcc search header files from non-exist folders?
- Error when overwriting value in unsigned char array
- Getting 'Missing Lifetime specifier' error
- Advice on C/FORTRAN wrapper library
- Parameterization Well Formedness and Capture Conversion in Java
- Linker Error on cross compiling Project in eclipse
- Using modules in google closure compiler
- Capture conversion issue in Java, WRT reconciliation of JLS and actual JDK behaviour
- Matlab 2011b - Error using mex
- no match for ‘operator=
- Swift Compiler Error when overriding function of subclass inheriting from NSObject that is declared within a function
- MultipartEntityBuilder.create cannot be resolved to a type
- OpenGl XUbuntu 14.04 glShaderSource, glCompileShader, glCreateProgram functions not declared
Related Questions in IOS11
- tableViewCell not scrolling up while editing a textfield in iOS11
- iOS 11 breaks row selection
- UITextField drawTextInRect is never called
- How to find obstacles in horizontal surface using ARKIT of iOS 11(Scenekit)?
- UIKeyboardWillShowNotification issues with ios 11 beta 7
- How to hide tabs in tabBarController dynamically in swift 3
- iOS11 file provider extension not working
- iOS11 Beta 8 | MapKit cluster performance issues 900+ Annotations
- iOS 11 navigationbar scroll
- iOS 11 CoreNFC How To Check if device has NFC Capability?
- How to place a 3D object above the other one using ARKit?
- with the new iOS 11 coming out- does WebRTC support mean that Twilio will work for voice in a browser instead of an app?
- Tab bar on iOS 11 not appearing
- scrollIntoView causes WKWebView to be partially unresponsive
- dyld: Library not loaded: @rpath/libswiftMetal.dylib on iOS 11(15A5304j) with Xcode 9 beta 6
Related Questions in CODESIGN
- How can I skip code signing for development builds in Xcode?
- codesign in Sierra: security set-key-partition-list not working
- taking backup of code signing identities for a new mac
- Re-sign .ipa with less or more devices
- Unable to download app for enterprise distribution while using shared extension
- Terminal's "codesign" command trouble
- Codesigning included framework
- dyld: Library not loaded. Reason : no suitable image found
- MacAppStore submission from Yosemite: Invalid signature in nested app bundle
- Including third party framework in Xcode project
- Keychain always asking for password when running codesign
- Failed to run Electron Helper in sandbox environment
- XCode Codesign Error when Adding Images to Cocos2dx App
- Xcode9 codesign error when using ARKit
- CodeSign collisions between Developer and Enterprise Distribution
Related Questions in ARKIT
- How to create a DAE file to use in SceneKit?
- How to store additional information in SCNNode?
- How to find obstacles in horizontal surface using ARKIT of iOS 11(Scenekit)?
- SceneKit - Rotate object around X and Z axis
- Using SCNFloor in ARKIt
- Draw straight line from start value to end value ARKit
- ARKit drop a custom object in the scene
- How to use DAE file with different Scene Graphs in iOS SceneKit
- How to place a 3D object above the other one using ARKit?
- How to detect collision between nodes of two different .scn files in Scenekit- iOS?
- Reliable access and modify captured camera frames under SceneKit
- Swift: How to set size of particle effects with SCNParticleSystem?
- Scanning a 3d object in ARKit via video camera?
- ARKit and Vision frameworks for Object Recognition
- How do ARCore or ARKit produce real-time augmentations of live video?
Related Questions in XCODE9-BETA
- UITextField drawTextInRect is never called
- iOS11 file provider extension not working
- iOS version mismatch between XCode and iTunes Connect
- Xcode 9 beta 4 beta 6, macOS 10.13 beta 7 Simulator can't render screens
- How to place a 3D object above the other one using ARKit?
- iOS11 UIBarButtonItem action not get called
- Linker Error while testing: Undefined symbols for architecture x86_64
- xcode 8.3 framework not found FileProvider for architecture armv7
- Xcode 9 - Framework breakpoints
- Images become very light
- Converting to Xcode 9 - pod framework not showing up for conversion?
- Barcode on swift 4
- How to fix "'@IBInspectable' attribute is meaningless on a property that cannot be represented in Objective-C" warning
- Prompt when trying to dial a phone number using tel:// scheme on iOS 11
- frame size of view not changing in iOS 11
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would check your build log and see exactly what the codesign command being emitted by Xcode is, then try running it on the command line after the build fails with the additional
-vflag so you get more information than -1. As a guess, I'd say your app may be missing an entitlement for handling the image. Perhaps it is accessing the camera roll?