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
There is no documentation for this module, both in the README and in the code (there's no comments, no function JSdoc headers, nothing).
This means we've spent countless hours trying to determine how to interface with, and grok this module. The PBX file format is tough enough on its own, so adding code on top of it makes it a very blurry-eyed experience.
It's impossible to tell which functions are designed to be called externally, and which ones are purely for internal purposes only since the whole pbxProject class is exported, and every function is exposed on the prototype. For example a internal use function prefix (like '_internalOnlyFunc()') would give a big hint, or just not putting every internal helper function on the prototype would help too.
I'm trying to modify a simple "Copy Files Phase" framework to enable code signing. The file doesn't appear in the PBXBuildFile section until I manually click the "Code Sign On Copy" in xcode. I am trying to add the file to the PBXBuildFile section so that I can specify the "CodeSignOnCopy" attribute.
The text was updated successfully, but these errors were encountered:
There is no documentation for this module, both in the README and in the code (there's no comments, no function JSdoc headers, nothing).
This means we've spent countless hours trying to determine how to interface with, and grok this module. The PBX file format is tough enough on its own, so adding code on top of it makes it a very blurry-eyed experience.
It's impossible to tell which functions are designed to be called externally, and which ones are purely for internal purposes only since the whole pbxProject class is exported, and every function is exposed on the prototype. For example a internal use function prefix (like '_internalOnlyFunc()') would give a big hint, or just not putting every internal helper function on the prototype would help too.
I'm trying to modify a simple "Copy Files Phase" framework to enable code signing. The file doesn't appear in the PBXBuildFile section until I manually click the "Code Sign On Copy" in xcode. I am trying to add the file to the PBXBuildFile section so that I can specify the "CodeSignOnCopy" attribute.
The text was updated successfully, but these errors were encountered: