-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeak.podspec
More file actions
25 lines (19 loc) · 973 Bytes
/
Teak.podspec
File metadata and controls
25 lines (19 loc) · 973 Bytes
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
Pod::Spec.new do |spec|
spec.name = "Teak"
spec.version = "4.3.12"
spec.summary = "Teak provides rewarded push notifications, emails, and links for free to play games."
spec.homepage = "https://teak.io"
spec.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
spec.author = { "Alex Scarborough" => "alex@teak.io" }
spec.source = { :git => "https://github.com/GoCarrot/teak-ios-framework.git", tag: spec.version.to_s }
spec.platform = :ios, "11.0"
spec.default_subspec = 'Core'
spec.subspec 'Core' do |core|
core.vendored_frameworks = 'Teak.xcframework'
core.frameworks = "AdSupport", "AVFoundation", "ImageIO", "CoreServices", "StoreKit", "UserNotifications", "CoreGraphics", "UIKit", "SystemConfiguration"
end
spec.subspec 'Extension' do |ext|
ext.vendored_frameworks = "TeakExtension.xcframework"
ext.frameworks = "ImageIO", "CoreGraphics", "UserNotifications"
end
end