Skip to content
This repository was archived by the owner on Feb 20, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 20 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,29 @@ node_modules
# iOS
ios/build

# OSX
#
.DS_Store

# Xcode
#
build/
DerivedData/
ios/RCTWeChat.xcodeproj/project.xcworkspace/xcuserdata
Pods/
*.xcuserstate
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
*.xcuserstate
project.xcworkspace


# Android/IntelliJ
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@
"standard-version": "9.1.0",
"typescript": "4.1.3"
},
"author": "shihuimiao",
"license": "MIT"
}
6 changes: 3 additions & 3 deletions RCTWeChat.podspec → react-native-wechat.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = "RCTWeChat"
s.name = "react-native-wechat"
s.version = package['version']
s.summary = "React-Native(iOS/Android) functionalities include WeChat Login, Share, Favorite and Payment"
s.summary = "Wechat library"
s.description = package['description']
s.author = package['author']
s.homepage = package['homepage']
s.license = "MIT"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/yorkie/react-native-wechat.git", :tag => "master" }
s.source = { :git => "https://github.com/yorkie/react-native-wechat.git", :tag => "#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.dependency "React"
s.dependency "WechatOpenSDK", '1.8.7.1'
Expand Down