https://github.com/rudderlabs/rudder-integration-moengage-ios
RudderStack's Native SDK integration support for MoEngage.
https://github.com/rudderlabs/rudder-integration-moengage-ios
moengage rudderstack
Last synced: 3 months ago
JSON representation
RudderStack's Native SDK integration support for MoEngage.
- Host: GitHub
- URL: https://github.com/rudderlabs/rudder-integration-moengage-ios
- Owner: rudderlabs
- License: other
- Created: 2020-10-28T12:50:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T09:07:48.000Z (over 1 year ago)
- Last Synced: 2025-07-10T21:50:55.508Z (10 months ago)
- Topics: moengage, rudderstack
- Language: Objective-C
- Homepage: https://rudderstack.com
- Size: 3.9 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# What is RudderStack?
[RudderStack](https://rudderstack.com/) is a **customer data pipeline** tool for collecting, routing and processing data from your websites, apps, cloud tools, and data warehouse.
More information on RudderStack can be found [here](https://github.com/rudderlabs/rudder-server).
## Integrating MoEngage with RudderStack's iOS SDK
1. Add [Moengage](https://app.moengage.com/) as a destination in the [Dashboard](https://app.rudderstack.com/) and define all the fields.
2. Rudder-Moenagage is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your Podfile:
```ruby
pod 'Rudder-Moengage', '~> 2.3.0'
```
3. After adding the dependency followed by ```pod install```, you can add the imports to your ```AppDelegate.m``` file, as shown:
```
#import "RudderMoengageFactory.h"
```
## Initialize ```RudderClient```
Put this code in your ```AppDelegate.m``` file under the method ```didFinishLaunchingWithOptions```
```
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneUrl:];
[builder withFactory:[RudderMoengageFactory instance]];
[RSClient getInstance: config:[builder build]];
```
## Send Events
Follow the steps from the [RudderStack iOS SDK](https://github.com/rudderlabs/rudder-sdk-ios).
## Contact Us
If you come across any issues while configuring or using this integration, feel free to start a conversation on our [Slack](https://resources.rudderstack.com/join-rudderstack-slack) channel. We will be happy to help you.