https://github.com/osano/cocoapods-specs
Repository for the Osano iOS Mobile SDK Cocoapods spec files
https://github.com/osano/cocoapods-specs
Last synced: over 1 year ago
JSON representation
Repository for the Osano iOS Mobile SDK Cocoapods spec files
- Host: GitHub
- URL: https://github.com/osano/cocoapods-specs
- Owner: osano
- Created: 2021-03-03T22:42:40.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T16:41:04.000Z (almost 2 years ago)
- Last Synced: 2024-09-17T22:18:03.263Z (almost 2 years ago)
- Language: Ruby
- Size: 30.3 KB
- Stars: 1
- Watchers: 9
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cocoapods Spec files
Repository for the Osano iOS Consent Manager Mobile SDK Cocoapods spec files.
## Usage
Install Cocoapods using "[Cocoapods - Getting Started](https://guides.cocoapods.org/using/getting-started.html)".
In your project's `Podfile` add a source for our Cocoapods specs repo.
```Ruby
source "https://github.com/osano/cocoapods-specs.git"
```
Within your `target` add the `OsanoConsentManagerSDK` and version as a referenced pod.
```Ruby
pod 'OsanoConsentManagerSDK', '~> 3.5.0'
```
By using a `~>` in front of your version number, you can automatically update to the most recently released major version. If you would rather specify your SDK version, omit the `~>` in front of the version number.
```Ruby
pod 'OsanoConsentManagerSDK', '3.5.0'
```
Your project's `Podfile` should look similar to the one below.
```Ruby
platform :ios, '12.1'
source "https://github.com/osano/cocoapods-specs.git"
target 'MyApp' do
use_frameworks!
pod 'OsanoConsentManagerSDK', '3.5.0'
end
```