-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathRCTAEPCore.podspec
More file actions
27 lines (19 loc) · 908 Bytes
/
RCTAEPCore.podspec
File metadata and controls
27 lines (19 loc) · 908 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
26
27
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RCTAEPCore"
s.version = package["version"]
s.summary = "Core library for Adobe Experience Platform Mobile SDK. Written and Supported by Adobe."
s.author = "Adobe Experience Platform SDK Team"
s.homepage = "https://github.com/adobe/aepsdk-react-native"
s.license = "Apache 2.0 License"
s.platforms = { :ios => "12.0", :tvos => "12.0" }
s.source = { :git => "https://github.com/adobe/aepsdk-react-native.git", :tag => "#{s.version}" }
s.requires_arc = true
s.dependency "React"
s.dependency 'AEPCore', '>= 5.4.0', '< 6.0.0'
s.dependency 'AEPLifecycle', '>= 5.4.0', '< 6.0.0'
s.dependency 'AEPIdentity', '>= 5.4.0', '< 6.0.0'
s.dependency 'AEPSignal', '>= 5.4.0', '< 6.0.0'
s.source_files = "ios/src/**/*.{h,m}"
end