1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

Init project.

This commit is contained in:
jaywcjlove
2020-07-31 14:47:29 +08:00
commit 43c08e759c
76 changed files with 10862 additions and 0 deletions

28
ios/RNWechat.podspec Normal file
View File

@@ -0,0 +1,28 @@
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNWechat"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
@uiw/react-native-wechat
DESC
s.homepage = "https://github.com/uiwjs/react-native-wechat"
# brief license entry:
s.license = "MIT"
# optional - use expanded license entry instead:
# s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Kenny Wong" => "wowohoo@qq.com" }
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/uiwjs/react-native-wechat.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,c,m,swift}"
s.requires_arc = true
s.dependency "React"
# ...
# s.dependency "..."
end