-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPPG_InAppMessages.podspec
More file actions
33 lines (24 loc) · 1.2 KB
/
PPG_InAppMessages.podspec
File metadata and controls
33 lines (24 loc) · 1.2 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
32
33
Pod::Spec.new do |s|
s.name = 'PPG_InAppMessages'
s.version = '4.2.1'
s.summary = 'PushPushGo In-App Messages SDK for iOS.'
# A more detailed description of the pod.
s.description = <<-DESC
The PushPushGo In-App Messages SDK allows easy integration of in-app messaging services for iOS applications.
Features include audience targeting, custom triggers, and seamless integration with push notifications.
DESC
s.homepage = 'https://pushpushgo.com/pl/'
s.license = 'MIT'
s.authors = { 'Adam' => 'adam@pushpushgo.com', 'Mateusz' => 'mateusz@pushpushgo.com' }
s.platform = :ios
s.source = { :git => 'https://github.com/ppgco/ios-sdk.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.swift_version = '5.3'
s.source_files = 'Sources/PPG_InAppMessages/**/*.{h,m,swift}'
# Bundle fonts as resources (only font files, exclude directories to avoid duplicates)
s.resource_bundles = {
'PPG_InAppMessages' => ['Sources/PPG_InAppMessages/Resources/**/*.ttf']
}
# Framework dependencies
s.frameworks = 'UIKit', 'WebKit', 'Foundation'
end