newrelic / newrelic-ios-agent-spm

This repository hosts the Swift Package Manager deployment of the iOS agent
Apache License 2.0
15 stars 9 forks source link

Community Project header

New Relic Swift Package Manager Deployment

New Relic's mobile monitoring capabilities help you gain deeper visibility into how to analyze your iOS application performance and troubleshoot crashes. You can also examine HTTP and other network performance for unexpected lag, which will in turn help you collaborate more efficiently with your backend teams.

Release Notes

https://docs.newrelic.com/docs/release-notes/mobile-release-notes/xcframework-release-notes/

Installation

  1. Select File > Swift Packages > Add Package Dependency....
  2. Add the Github URL of the Package file:

    https://github.com/newrelic/newrelic-ios-agent-spm

If you receive an artifact of binary target 'NewRelic' failed extraction: The operation couldn’t be completed. (TSCBasic.StringError error 1.) error when extracting the package, please close Xcode, delete the Derrived Data folder, re-open Xcode, and try again.

  1. Select the NewRelic package product, select your target, and select Finish.

  2. In your AppDelegate.swift file, add this call as the first line of applicationDidFinishLaunchWithOptions, replacing APP_TOKEN with your application token:

    NewRelic.start(withApplicationToken:"APP_TOKEN")

    To ensure proper instrumentation, you must call the agent on the first line of didFinishLaunchingWithOptions(), and run the agent on the main thread. Starting the call later, on a background thread, or asynchronously can cause unexpected or unstable behavior.

  3. Add a build script to your target's Build Phases. Ensure the new build script is the very last build script. Then paste the following snippet, replacing APP_TOKEN with your application token:

    • Depending on your agent version add the code block below.
    • Use this line as your run script on iOS Agent 7.4.0+:
      ARTIFACT_DIR="${BUILD_DIR%Build/*}"
      SCRIPT=`/usr/bin/find "${SRCROOT}" "${ARTIFACT_DIR}" -type f -name run-symbol-tool | head -n 1`
      /bin/sh "${SCRIPT}" "APP_TOKEN"
    • For iOS Agent 7.3.8 or before you must use the following 6 line script:
      
      SCRIPT=`/usr/bin/find "${SRCROOT}" -name newrelic_postbuild.sh | head -n 1`

    if [ -z "${SCRIPT}"]; then ARTIFACT_DIR="${BUILD_DIR%Build/*}SourcePackages/artifacts" SCRIPT=/usr/bin/find "${ARTIFACT_DIR}" -name newrelic_postbuild.sh | head -n 1 fi

    /bin/sh "${SCRIPT}" "APP_TOKEN"

  1. If there is a checkbox below Run script that says "Run script: Based on Dependency analysis" please make sure it is not checked.

  2. Clean and build your app, then run it in the simulator or other device.

Getting Started

If you have not created a Mobile Application:

If you have previously created a Mobile Application:

Troubleshooting

You might see the following errors when adding the Swift package:

If you see these types of errors, try the following:

  1. De-integrate New Relic Swift package from the Xcode project.
  2. Run these commands from the terminal to delete spm caches:
    rm -rf ~/Library/Caches/org.swift.swiftpm
    rm -rf ~/Library/org.swift.swiftpm
  3. Delete derived data using Xcode.
  4. Re-integrate the New Relic Swift package into the Xcode project.

Support

Please visit the New Relic Support page for help with any issues you encounter with our agents.

A note about vulnerabilities

As noted in our security policy, New Relic is committed to the privacy and security of our customers and their data. We believe that providing coordinated disclosure by security researchers and engaging with the security community are important means to achieve our security goals.

If you believe you have found a security vulnerability in this project or any of New Relic's products or websites, we welcome and greatly appreciate you reporting it to New Relic through HackerOne.

License

New Relic Swift Package Manager Deployment is licensed under the Apache 2.0 License.