Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/outbrain-inc/outbrain-ios-framework
https://github.com/outbrain-inc/outbrain-ios-framework
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/outbrain-inc/outbrain-ios-framework
- Owner: outbrain-inc
- Created: 2019-09-16T12:34:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T13:35:26.000Z (about 1 month ago)
- Last Synced: 2024-11-27T17:17:43.724Z (29 days ago)
- Language: Objective-C
- Size: 130 MB
- Stars: 0
- Watchers: 10
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
## Outbrain iOS SDK Framework
About [Outbrain](https://www.outbrain.com/)
Please make sure to review [Outbrain SDK Developers Site](https://sdk.outbrain.com/docs/iOS-SDK/Getting-Started/)
## Compatibility and Requirements
| **Outbrain SDK** | **Requirements** |
|-------------------- |------------------------------------------------------ |
| Min OutbrainSDK | iOS 14.0 or higher |
| Build OutbrainSDK | iOS 17.0 |
| Languages | Objective-C, Swift |
| Devices | Any iOS compatible device: iPhones, iPads, etc. |
| File Sizes | Outbrain adds about 100KB to your iOS release app. |
| Architectures | i386, x86_64, armv7, arm64 |## Installation
### Add the SDK to your project
#### Using [CocoaPods](https://cocoapods.org)
1. Add `pod 'OutbrainSDK'` into your [Podfile](https://guides.cocoapods.org/syntax/podfile.html).
2. Run `pod install`.
3. Open workspace file and run the project.#### Using [Swift Package Manager](https://swift.org/package-manager)
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.
Once you have your Swift package set up, adding OutbrainSDK as a dependency is as easy as adding it to the dependencies value of your Package.swift.
```
dependencies: [
.package(url: "https://github.com/outbrain/outbrain-iOS-Framework", .upToNextMajor(from: "x.x.x"))
]
```### Follow The Official Documentation
Follow the [SDK integration steps](https://sdk.outbrain.com/docs/category/ios-sdk) on our developer site.