{"id":20340210,"url":"https://github.com/webengage/webengageappex","last_synced_at":"2026-05-14T07:33:09.230Z","repository":{"id":25695300,"uuid":"105264471","full_name":"WebEngage/WebEngageAppEx","owner":"WebEngage","description":"WebEngage Extension SDK","archived":false,"fork":false,"pushed_at":"2024-04-12T04:00:17.000Z","size":1258,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-04-12T12:01:24.512Z","etag":null,"topics":["cocoapods","content","extension","ios","sdk","service"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WebEngage.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}},"created_at":"2017-09-29T11:21:36.000Z","updated_at":"2024-04-15T09:48:06.417Z","dependencies_parsed_at":"2022-08-07T11:15:55.971Z","dependency_job_id":"7f197453-f089-4985-bef4-29fc9c3185af","html_url":"https://github.com/WebEngage/WebEngageAppEx","commit_stats":{"total_commits":100,"total_committers":10,"mean_commits":10.0,"dds":0.5900000000000001,"last_synced_commit":"29d19dec097ddb080a23752dfa4af3486d9b9dfe"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebEngage%2FWebEngageAppEx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebEngage%2FWebEngageAppEx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebEngage%2FWebEngageAppEx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebEngage%2FWebEngageAppEx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WebEngage","download_url":"https://codeload.github.com/WebEngage/WebEngageAppEx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241867649,"owners_count":20033815,"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":["cocoapods","content","extension","ios","sdk","service"],"created_at":"2024-11-14T21:20:14.723Z","updated_at":"2026-05-14T07:33:09.151Z","avatar_url":"https://github.com/WebEngage.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WebEngageAppEx\n\n[![Version](https://img.shields.io/cocoapods/v/WebEngageAppEx.svg?style=flat)](http://cocoapods.org/pods/WebEngageAppEx)\n[![License](https://img.shields.io/github/license/WebEngage/WebEngageAppEx.svg)](http://cocoapods.org/pods/WebEngageAppEx)\n[![Platform](https://img.shields.io/cocoapods/p/WebEngageAppEx.svg?style=flat)](http://cocoapods.org/pods/WebEngageAppEx)\n[![LastUpdated](https://img.shields.io/github/last-commit/WebEngage/WebEngageAppEx.svg)](https://cocoapods.org/pods/WebEngageAppEx)\n\nDetailed Setup Guide available [here](https://docs.webengage.com/docs/ios-getting-started).\n\n#### Minimum SDK Requirements ####\n\nWebEngage SDK is supported for `iOS8` and above. The following frameworks should be linked as part of the Xcode project (Direct Integration).\n\n    1. CoreLocation.framework\n\n    2. SystemConfiguration.framework\n\n    3. AdSupport.framework\n\n    4. -lsqlite3\n\n#### There are 2 ways of integrating WebEngage to your existing/new Xcode Project.\n\n#### 1. CocoaPods Integration (Recommended)\n\n  1. Add the following to your Podfile\n\n          # For Xcode 10 and above:\n\n          target 'YourAppTarget' do\n              platform :ios, '8.0'\n              pod 'WebEngage'\n          end\n\n          # ServiceExtension Target\n          target 'NotificationService' do\n              platform :ios, '10.0'\n              pod 'WebEngageBannerPush'\n          end\n\n          # ContentExtension Target\n          target 'NotificationViewController' do\n              platform :ios, '10.0'\n              pod 'WebEngageAppEx/ContentExtension'\n          end\n\n2. Install WebEngage SDK by running `pod install`\n\n\nCheck out Swift Bridging Header details [here](https://docs.webengage.com/docs/ios-getting-started#section-4-support-for-swift).\n\nLearn about Podfile Specifications [here](https://guides.cocoapods.org/using/the-podfile.html).\n\n#### 2. Direct Integration (Manual) ####\n\n1. Download the SDK file [here](https://s3-us-west-2.amazonaws.com/webengage-sdk/ios/latest/WebEngageFramework.zip). Extract the downloaded zip file. In the extracted zip there would be two directories - xc6 and xc7. If you are using Xcode 9 use the `Webengage.framework` within the `xc9` directory. For Xcode 10 and above use the one in `xc10`. Save the appropriate `Webengage.framework` it in a location on your computer.\n\n2. Select the name of the project in the project navigator. The project editor appears in the editor area of the Xcode workspace window.\n\n3. Click on the `General` Tab at the top of project editor.\n\n4. In the section `Embedded Libraries` click on `+` button. It will open up the file chooser for your project. Open WebEngage.framework and select `Copy if needed` option. This will copy the framework to your project directory.\n\n5. Below Embedded Libraries, there is `Linked Frameworks and Libraries` click the `+` button and add the following frameworks:\n    ```\n    SystemConfiguration.framework\n    CoreLocation.framework\n    AdSupport.framework\n    ```\n6. Go to 'Build Settings' tab on the top of the project editor. Search for `Other Linker Flags` option.\nAdd `-lsqlite3` under it.\n\nAt this point, WebEngage SDK integration is complete and your project should build successfully.\n\nCheck out more details [here](https://docs.webengage.com/docs/ios-getting-started).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebengage%2Fwebengageappex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebengage%2Fwebengageappex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebengage%2Fwebengageappex/lists"}