### Add LookInsideServer via CocoaPods Source: https://lookinside-app.com/docs/getting-started Include LookInsideServer in your app's Podfile for Debug configurations only. Run 'pod install' afterwards. ```ruby target "YourApp" do pod "LookInsideServer", :podspec => "https://raw.githubusercontent.com/LookInsideApp/LookInside-Release/main/LookInsideServer.podspec", :configurations => ["Debug"] end ``` -------------------------------- ### Add LookInsideServer via Swift Package Manager URL Source: https://lookinside-app.com/docs/getting-started Paste this URL into Xcode's 'Add Package Dependencies' to include LookInsideServer. ```text https://github.com/LookInsideApp/LookInside-Release.git ``` -------------------------------- ### Download and Unzip LookInsideServer XCFramework Source: https://lookinside-app.com/docs/getting-started Use curl and unzip to manually download and extract the LookInsideServer XCFramework. Drag the framework into your Xcode project and ensure it's set to 'Embed & Sign' in your debug target's settings. ```bash curl -L -o LookInsideServer.xcframework.zip \ "https://github.com/LookInsideApp/LookInside-Release/releases/latest/download/LookInsideServer.xcframework.zip" unzip LookInsideServer.xcframework.zip ``` -------------------------------- ### Declare LookInsideServer in Package.swift Source: https://lookinside-app.com/docs/getting-started Add LookInsideServer as a dependency in your Package.swift file for Swift Package Manager integration. ```swift let package = Package( dependencies: [ .package( url: "https://github.com/LookInsideApp/LookInside-Release.git", from: "0.2.2" ), ], targets: [ .target( name: "YourApp", dependencies: [ .product( name: "LookInsideServer", package: "LookInside-Release" ), ] ), ] ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.