-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChartboostMediationAdapterVerve.podspec
30 lines (24 loc) · 1.39 KB
/
ChartboostMediationAdapterVerve.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |spec|
spec.name = 'ChartboostMediationAdapterVerve'
spec.version = '4.2.18.1.0'
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.homepage = 'https://github.com/ChartBoost/chartboost-mediation-ios-adapter-verve'
spec.authors = { 'Chartboost' => 'https://www.chartboost.com/' }
spec.summary = 'Chartboost Mediation iOS SDK Verve adapter.'
spec.description = 'Verve / HyBid Adapter for mediating through Chartboost Mediation. Supported ad formats: Banner, Interstitial, Rewarded.'
# Source
spec.module_name = 'ChartboostMediationAdapterVerve'
spec.source = { :git => 'https://github.com/ChartBoost/chartboost-mediation-ios-adapter-verve.git', :tag => spec.version }
spec.source_files = 'Source/**/*.{swift}'
# Minimum supported versions
spec.swift_version = '5.0'
spec.ios.deployment_target = '10.0'
# System frameworks used
spec.ios.frameworks = ['Foundation', 'UIKit']
# This adapter is compatible with all Chartboost Mediation 4.X versions of the SDK.
spec.dependency 'ChartboostMediationSDK', '~> 4.0'
# Partner network SDK and version that this adapter is certified to work with.
spec.dependency 'HyBid', '~> 2.18.1'
# Indicates, that if use_frameworks! is specified, the pod should include a static library framework.
spec.static_framework = true
end