-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAEPEdge.podspec
22 lines (18 loc) · 1 KB
/
AEPEdge.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 = "AEPEdge"
s.version = "1.5.0"
s.summary = "Experience Platform Edge extension for Adobe Experience Platform Mobile SDK. Written and maintained by Adobe."
s.description = <<-DESC
The Experience Platform Edge extension enables sending data to the Adobe Experience Edge from a mobile device using the v5 Adobe Experience Platform SDK.
DESC
s.homepage = "https://github.com/adobe/aepsdk-edge-ios.git"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = "Adobe Experience Platform SDK Team"
s.source = { :git => "https://github.com/adobe/aepsdk-edge-ios.git", :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = '5.1'
s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }
s.dependency 'AEPCore', '>= 3.5.0'
s.dependency 'AEPEdgeIdentity'
s.source_files = 'Sources/**/*.swift'
end