Troubleshooting

Read here if you encounter any issues when running the SDK.

Error: Reason: no LC_RPATH's found

If you see the error 'Reason: no LC_RPATH's found' when running your app, you need to add the linker flag to find the framework:

  1. Go to the project Target, and select the Build Settings tab.

  2. Select All, and enter other linker flags into the filter.

  3. Click on the value field next to the Other Linker Flags key to open the editor window.

  4. Click the +, enter: -rpath Hit the Enter key.

  5. Click the + again, ensuring the next field is below the -rpath field, enter: @executable_path/Frameworks

  6. Click away from the window to add the setting, which should appear as "-rpath @executable_path/Frameworks" and run the app again.

Last updated