https://github.com/rudderlabs/rudder-integration-appcenter-ios
RudderStack's Native SDK integration with Visual Studio App Center.
https://github.com/rudderlabs/rudder-integration-appcenter-ios
ios-sdk rudderstack
Last synced: 4 months ago
JSON representation
RudderStack's Native SDK integration with Visual Studio App Center.
- Host: GitHub
- URL: https://github.com/rudderlabs/rudder-integration-appcenter-ios
- Owner: rudderlabs
- License: other
- Created: 2021-01-12T17:51:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T05:15:44.000Z (over 1 year ago)
- Last Synced: 2025-02-25T18:49:59.075Z (4 months ago)
- Topics: ios-sdk, rudderstack
- Language: Objective-C
- Homepage: https://rudderstack.com/
- Size: 30.2 MB
- Stars: 2
- Watchers: 6
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.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 Visual Studio App Center with RudderStack's iOS SDK
[App Center](https://appcenter.ms/) is Microsoft's cross-platform build automation and management platform that lets you seamlessly manage your app's lifecycle. With App Center, you can easily manage and automate your builds, effectively test your apps in the cloud, and monitor their real-time usage with the help of crash data and analytics.
1. Add App Center as destination from Rudder Dashboard and add the app secret key.
2. Rudder-AppCenter is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod 'Rudder-AppCenter'
```## Initialize ```RudderClient```
Put this code in your ```AppDelegate.m``` file under the method ```didFinishLaunchingWithOptions```
```
RSConfigBuilder *builder = [[RSConfigBuilder alloc] init];
[builder withDataPlaneUrl:];
[builder withFactory:[RudderAppCenterFactory 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, please feel free to start a conversation on our [Slack](https://resources.rudderstack.com/join-rudderstack-slack) channel. We will be happy to help you.