{"id":23131242,"url":"https://github.com/emartech/ios-emarsys-sdk","last_synced_at":"2025-05-10T22:51:00.364Z","repository":{"id":35019883,"uuid":"142305975","full_name":"emartech/ios-emarsys-sdk","owner":"emartech","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-25T14:08:01.000Z","size":4311,"stargazers_count":18,"open_issues_count":1,"forks_count":20,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-04-25T14:49:32.106Z","etag":null,"topics":["ios","mobilesdk"],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emartech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-07-25T13:45:23.000Z","updated_at":"2025-04-16T14:20:44.000Z","dependencies_parsed_at":"2024-01-11T17:45:55.461Z","dependency_job_id":"d7e66142-4ca6-4efe-9dba-48fe8b48c320","html_url":"https://github.com/emartech/ios-emarsys-sdk","commit_stats":{"total_commits":1302,"total_committers":15,"mean_commits":86.8,"dds":"0.38632872503840243","last_synced_commit":"b1cdbf3404c009b774e19f1839035ef1eb8ecb30"},"previous_names":[],"tags_count":57,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emartech%2Fios-emarsys-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emartech%2Fios-emarsys-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emartech%2Fios-emarsys-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emartech%2Fios-emarsys-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emartech","download_url":"https://codeload.github.com/emartech/ios-emarsys-sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253492589,"owners_count":21916963,"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","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":["ios","mobilesdk"],"created_at":"2024-12-17T11:12:22.715Z","updated_at":"2025-05-10T22:51:00.339Z","avatar_url":"https://github.com/emartech.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![REUSE status](https://api.reuse.software/badge/github.com/emartech/ios-emarsys-sdk)](https://api.reuse.software/info/github.com/emartech/ios-emarsys-sdk)\n#### Contents\n- [What is the Emarsys SDK?](#what-is-the-emarsys-sdk \"What is EmarsysSDK?\")\n- [Sample app](#sample-app \"Sample app\")\n- [Setup](#setup \"Setup\")\n    - [Installation with CocoaPods](#1-installation-with-cocoapods \"CocoaPods\")\n    - [Requirements](#2-requirements \"Requirements\")\n- [Documentation](https://github.com/emartech/ios-emarsys-sdk/wiki \"Wiki\")\n- [DeepLink](https://github.com/emartech/ios-emarsys-sdk/wiki/deeplink \"DeepLink\")\n- [Glossary](https://github.com/emartech/ios-emarsys-sdk/wiki/glossary \"Glossary\")\n- [Migrate from MobileEngage](https://github.com/emartech/ios-emarsys-sdk/wiki/migrate-from-mobile-engage \"Migration guide\")\n- [Rich Push Notifications](https://github.com/emartech/ios-emarsys-sdk/wiki/rich-push-notifications \"Rich Push notifications\")\n\n## What is the Emarsys SDK?\n\nThe Emarsys SDK enables you to use Mobile Engage and Predict in a very straightforward way. By incorporating the SDK in your app, we, among others, support you in handling credentials, API calls, tracking of opens and events as well as logins and logouts in the app.\n\nThe Emarsys SDK is open-sourced to enhance transparency and to remove privacy concerns. This also means that you will always be up-to-date with what we are working on.\n\nUsing the SDK is also beneficial from the product aspect: it simply makes it much easier to send push messages through your app. Please always use the latest version of the SDK in your app.\n\n## Sample app\nWe created a sample application to help in the integration and give an example. Find instructions for the build process [here](https://github.com/emartech/ios-emarsys-sdk/tree/master/Emarsys%20Sample \"Sample app\").\n\n## Setup\n### 1. Installation with CocoaPods\n#### 1.1 Install CocoaPods\nCocoaPods is a dependency manager for iOS, which automates and simplifies the process of using 3rd-party libraries.\nYou can install it with the following command:\n\n`$ gem install cocoapods`\n\n#### 1.2 Podfile\nTo integrate the Emarsys SDK into your Xcode project using CocoaPods, specify it in your Podfile:\n```ruby\nplatform :ios, '11.0'\n\nsource 'https://github.com/CocoaPods/Specs.git'\n\ntarget \"\u003cTargetName\u003e\" do\n\tpod ‘EmarsysSDK’, '~\u003e ‹latest_released_version_of_emarsys-sdk›’\nend\n```\n\u003e Wherever you see \u003cTargetName\u003e or anything similar in \u003c\u003e brackets, you should change those according to your own naming convention or add a value valid for the context.\n\n#### 1.3 Install Pods\nAfter creating the Podfile, you need to execute the command below to download dependencies:\n`pod install`\n\n### 2. Installation with Swift Package Manager\n#### 2.1 Add package in XCode\nSelect project and under Swift Packages add the package repository url: https://github.com/emartech/ios-emarsys-sdk.git\n\nSelect the desired version of the EmarsysSDK.\n\n\nOn the next page select the libraries you want to use and add them to the correct target, for example (based on our SampleApp):\n\n\nEmarsysSDKLibrary and add to target EmarsysSample\n\nEmarsysNotificationExtensionLibrary and add to target EMSNotificationService\n\n### 3. Requirements\n* The iOS target should be iOS 11 or higher.\n* In order to be able to send push messages to your app, you need to have certifications from Apple Push Notification service (APNs).\n\n\u003e `Note`\n\u003e\n\u003e For further information about how to use our SDK please visit our [Documentation](https://github.com/emartech/ios-emarsys-sdk/wiki \"Wiki\")\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femartech%2Fios-emarsys-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femartech%2Fios-emarsys-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femartech%2Fios-emarsys-sdk/lists"}