-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathreact-native-pushiomanager.podspec
More file actions
23 lines (23 loc) · 1.1 KB
/
react-native-pushiomanager.podspec
File metadata and controls
23 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-pushiomanager"
s.version = package["version"]
s.summary = package["description"]
s.homepage = "https://github.com/oracle/pushiomanager-react-native"
s.license = "UPL-1.0"
# s.license = { :type => "UPL-1.0", :file => "FILE_LICENSE" }
s.authors = { "Responsys" => "support@oracle.com" }
s.platforms = { :ios => "12.0" }
s.source = { :path => '.' }
s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
s.preserve_paths = 'CX_Mobile_SDK.xcframework'
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework CX_Mobile_SDK -ObjC' }
s.vendored_frameworks = 'framework/CX_Mobile_SDK.xcframework','framework/OracleCXLocationSDK.xcframework'
s.preserve_paths = "framework/CX_Mobile_SDK.xcframework/**/*","framework/OracleCXLocationSDK.xcframework/**/*"
s.libraries = 'sqlite3'
s.frameworks = 'UserNotifications', 'CoreLocation', 'Foundation', 'UIKit'
s.ios.frameworks = 'WebKit'
s.dependency "React"
end