-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRTNNativeLocalStorage.podspec
More file actions
26 lines (22 loc) · 1.01 KB
/
Copy pathRTNNativeLocalStorage.podspec
File metadata and controls
26 lines (22 loc) · 1.01 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
require "json"
# We still read version from package.json, but hardcode the rest to pass validation
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RTNNativeLocalStorage"
s.version = package["version"]
s.summary = "A Turbo Native Module for Local Storage"
s.description = "Demonstration of a Turbo Native Module for React Native New Architecture."
s.homepage = "https://github.com/example/weather-app"
s.license = "MIT"
s.platforms = { :ios => "12.4" }
s.author = { "Landry Karangwa" => "emr7059@gmail.com" }
s.source = { :git => "https://github.com/example/weather-app.git", :tag => "#{s.version}" }
s.source_files = "ios/NativeLocalStorage/**/*.{h,m,mm}"
s.dependency "React-Core"
s.dependency "React-RCTFabric"
s.dependency "React-Codegen"
s.dependency "RCT-Folly"
s.dependency "RCTRequired"
s.dependency "RCTTypeSafety"
s.dependency "ReactCommon/turbomodule/core"
end