-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlueStackGoogleAdapter.podspec
More file actions
31 lines (25 loc) · 1.04 KB
/
BlueStackGoogleAdapter.podspec
File metadata and controls
31 lines (25 loc) · 1.04 KB
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
31
Pod::Spec.new do |s|
s.authors = 'Azerion'
s.name = 'BlueStackGoogleAdapter'
s.version = '5.4.0'
s.static_framework = true
s.license = 'MIT'
s.platform = :ios, '13.0'
s.summary = 'BlueStack Google mediation adapter'
s.homepage = "https://developers.bluestack.app/"
s.swift_version = '5'
s.source_files = ["BlueStackGoogleAdapter.xcframework/*/*/Headers/*.{h,m,swift}"]
s.source = { :git => 'https://github.com/azerion/BlueStack-Google-Adapter.git', :tag => "#{s.version}" }
s.documentation_url = 'https://developers.bluestack.app/ios/mediation/primairy/supported-networks#google-mobile-ads'
s.vendored_frameworks = "BlueStackGoogleAdapter.xcframework"
s.ios.deployment_target = '13.0'
s.dependency 'BlueStack-SDK', '>=5.4.0'
s.dependency 'Google-Mobile-Ads-SDK', '>= 12.0.0', '<= 12.14.0'
s.pod_target_xcconfig =
{
'VALID_ARCHS' => 'arm64 arm64e armv7 armv7s x86_64',
'VALID_ARCHS[sdk=iphoneos*]' => 'arm64 arm64e armv7 armv7s',
'VALID_ARCHS[sdk=iphonesimulator*]' => 'arm64 arm64e x86_64',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
}
end