{"id":19240211,"url":"https://github.com/gleapsdk/gleap-ios-sdk","last_synced_at":"2026-04-21T14:01:10.424Z","repository":{"id":44027969,"uuid":"410259744","full_name":"GleapSDK/Gleap-iOS-SDK","owner":"GleapSDK","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-25T16:23:44.000Z","size":42865,"stargazers_count":2,"open_issues_count":1,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-25T21:12:23.785Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GleapSDK.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-09-25T11:54:52.000Z","updated_at":"2025-07-25T16:23:31.000Z","dependencies_parsed_at":"2023-09-22T09:38:22.903Z","dependency_job_id":"8a4761b3-24a0-4d1d-bd3f-29fa994e2b6c","html_url":"https://github.com/GleapSDK/Gleap-iOS-SDK","commit_stats":{"total_commits":166,"total_committers":1,"mean_commits":166.0,"dds":0.0,"last_synced_commit":"25914dffaf8929a2363a5fb7ba55c24b56f97365"},"previous_names":[],"tags_count":140,"template":false,"template_full_name":null,"purl":"pkg:github/GleapSDK/Gleap-iOS-SDK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GleapSDK%2FGleap-iOS-SDK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GleapSDK%2FGleap-iOS-SDK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GleapSDK%2FGleap-iOS-SDK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GleapSDK%2FGleap-iOS-SDK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GleapSDK","download_url":"https://codeload.github.com/GleapSDK/Gleap-iOS-SDK/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GleapSDK%2FGleap-iOS-SDK/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267889512,"owners_count":24161205,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T17:06:27.156Z","updated_at":"2026-03-14T15:30:50.201Z","avatar_url":"https://github.com/GleapSDK.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gleap iOS SDK\n\n![Gleap iOS SDK Intro](https://raw.githubusercontent.com/GleapSDK/Gleap-iOS-SDK/main/Resources/GleapHeaderImage.png)\n\nThe [Gleap SDK for iOS](https://www.gleap.io) is the easiest way to integrate Gleap into your apps!\n\nYou have two ways to set up the Gleap SDK for iOS. The easiest way ist to install and link the SDK with CocoaPods. If you haven't heard about [CocoaPods](https://cocoapods.org) yet, we strongly encourage you to check out their getting started here (it's super easy to get started \u0026 worth using 😍)\n\n## Docs \u0026 Examples\n\nCheckout our [documentation](https://docs.gleap.io/ios) for full reference.\n\n\n## Installation with Swift Package Manager\n\nThe [Swift Package Manager](https://www.swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but Gleap does support its use on supported platforms.\n\nTo get started, open your Xcode project and select File \u003e Add packages...\n\nNow you need to paste the following Package URL to the search bar in the top right corner. Hit enter to confirm.\n\n**Package URL:**\n```\nhttps://github.com/GleapSDK/Gleap-iOS-SDK\n```\n\nNow confirm with add package. The Gleap SDK is almost installed successfully.\nLet's carry on with the initialization 🎉\n\n![Gleap iOS SDK for Swift Package Manager](https://raw.githubusercontent.com/GleapSDK/Gleap-iOS-SDK/main/Resources/GleapSwiftPackageManager.png)\n\n## Installation with CocoaPods\n\nOpen a terminal window and navigate to the location of the Xcode project for your app.\n\n**Create a Podfile if you don't have one:**\n\n```\n$ pod init\n```\n\n**Open your Podfile and add:**\n\n```\npod 'Gleap'\n```\n\n**Save the file and run:**\n\n```\n$ pod install\n```\n\nThis creates an .xcworkspace file for your app. Use this file for all future development on your application.\n\nThe Gleap SDK is almost installed successfully.\nLet's carry on with the initialization 🎉\n\nOpen your XCode project (.xcworkspace) and open your App Delegate (AppDelegate.swift)\n\n\n**Import the Gleap SDK**\n\nImport the Gleap SDK by adding the following import below your other imports.\n\n```\nimport Gleap\n```\n\n**Initialize the SDK**\n\nThe last step is to initialize the Gleap SDK by adding the following Code to the end of the ```applicationDidFinishLaunchingWithOptions``` delegate:\n\n```\nGleap.initialize(withToken: \"YOUR_API_KEY\")\n```\n\n(Your API key can be found in the project settings within Gleap)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgleapsdk%2Fgleap-ios-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgleapsdk%2Fgleap-ios-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgleapsdk%2Fgleap-ios-sdk/lists"}