forked from Notificare/notificare-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotificare.podspec
81 lines (65 loc) · 3.23 KB
/
Notificare.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Pod::Spec.new do |spec|
spec.name = "Notificare"
spec.version = "4.0.0"
spec.summary = "Notificare Library for iOS apps"
spec.description = <<-DESC
The Notificare iOS Library implements the power of smart notifications, location services, contextual marketing and powerful loyalty solutions provided by the Notificare platform in iOS applications.
For documentation please refer to: http://docs.notifica.re
For support please use: http://support.notifica.re
DESC
spec.homepage = "https://notificare.com"
spec.documentation_url = "https://docs.notifica.re"
spec.license = { :type => "MIT", :file => 'Notificare/LICENSE' }
spec.author = { "Notificare" => "[email protected]" }
spec.source = { :http => "https://cdn.notifica.re/libs/ios/#{spec.version}/cocoapods.zip" }
spec.swift_version = "5.3"
# Supported deployment targets
spec.ios.deployment_target = "13.0"
# Subspecs
spec.subspec 'NotificareKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareAssetsKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareAssetsKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareGeoKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareGeoKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareInAppMessagingKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareInAppMessagingKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareInboxKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareInboxKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareLoyaltyKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareLoyaltyKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareNotificationServiceExtensionKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareNotificationServiceExtensionKit.xcframework"
end
spec.subspec 'NotificarePushKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificarePushKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificarePushUIKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificarePushUIKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareScannablesKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareScannablesKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareUserInboxKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareUserInboxKit.xcframework"
subspec.dependency 'Notificare/NotificareUtilitiesKit'
end
spec.subspec 'NotificareUtilitiesKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareUtilitiesKit.xcframework"
end
end