forked from adobe/aepsdk-core-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AEPLifecycle.podspec
22 lines (17 loc) · 912 Bytes
/
AEPLifecycle.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "AEPLifecycle"
s.version = "3.5.0"
s.summary = "Lifecycle extension for Adobe Experience Platform Mobile SDK. Written and maintained by Adobe."
s.description = <<-DESC
The AEPLifecycle extension is used to track application lifecycle including session metricss and device related data.
DESC
s.homepage = "https://github.com/adobe/aepsdk-core-ios"
s.license = 'Apache V2'
s.author = "Adobe Experience Platform SDK Team"
s.source = { :git => "https://github.com/adobe/aepsdk-core-ios", :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'AEPLifecycle/Sources/**/*.swift'
s.swift_version = '5.1'
s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }
s.dependency 'AEPCore', '>= 3.5.0'
end