chore: initial commit

This commit is contained in:
Kyle Fang
2022-01-28 21:47:49 +08:00
commit 1702d58891
69 changed files with 3374 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-libpag"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/zhigang1992/react-native-libpag.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm}"
s.dependency "React-Core"
end