-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNMappPlugin.podspec
More file actions
29 lines (25 loc) · 1.3 KB
/
RNMappPlugin.podspec
File metadata and controls
29 lines (25 loc) · 1.3 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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNMappPlugin"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
Mapp SDK for React Native
DESC
s.homepage = "https://github.com/mapp-digital/Mapp-Engage-ReactNative-Plugin"
s.license = "MIT"
s.author = "Mapp"
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/mapp-digital/Mapp-Engage-ReactNative-Plugin", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,c,m,swift}"
s.exclude_files = "ios/RNMappPluginTests/**/*"
s.vendored_framework = "ios/Frameworks/AppoxeeSDK.xcframework", "ios/Frameworks/AppoxeeLocationServices.xcframework", "ios/Frameworks/AppoxeeInapp.xcframework"
s.resources = "ios/Frameworks/AppoxeeSDKResources.bundle", "ios/Frameworks/AppoxeeInappResources.bundle"
s.preserve_path = "ios/Frameworks/"
s.public_header_files = "ios/Frameworks/AppoxeeSDK.xcframework/ios-arm64/Headers/", "ios/Frameworks/AppoxeeLocationServices.xcframework/ios-arm64/Headers/", "ios/Frameworks/AppoxeeInapp.xcframework/ios-arm64/Headers/"
s.requires_arc = true
s.frameworks = "WebKit"
s.library = 'sqlite3'
s.dependency "React"
end