-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNKLineView.podspec
More file actions
25 lines (22 loc) · 1.01 KB
/
Copy pathRNKLineView.podspec
File metadata and controls
25 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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNKLineView"
s.version = package["version"]
s.summary = "High-performance candlestick chart component for React Native"
s.description = <<-DESC
A professional K-Line (candlestick) chart library for React Native
with interactive drawing tools, technical indicators, and real-time
data support for iOS and Android.
DESC
s.homepage = "https://github.com/itsnyx/react-native-kline-chart"
s.license = { :type => "Apache-2.0", :file => "LICENSE" }
s.author = { "itsnyx" => "xitsnyx@gmail.com" }
s.platform = :ios, "13.0"
s.source = { :git => "https://github.com/itsnyx/react-native-kline-chart.git", :tag => s.version }
s.source_files = "ios/Classes/**/*"
s.requires_arc = true
s.swift_version = "5.0"
s.dependency "React-Core"
s.dependency "lottie-ios", ">= 4.0"
end