Skip to content

Commit b07a52a

Browse files
committed
add more interface
1 parent 2ee221c commit b07a52a

File tree

131 files changed

+47263
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+47263
-1
lines changed

.gitignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
### common ignorefile
2+
*/.DS_Store
3+
.vscode/
4+
.idea/*
5+
*.lock
6+
*.a
7+
*.tar.gz
8+
*.docx
9+
.DS_Store
10+
*/target
11+
*/OpenSSL
12+
13+
### Objective-C ###
14+
# Xcode
15+
#
16+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
17+
18+
## User settings
19+
xcuserdata/
20+
21+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
22+
*.xcscmblueprint
23+
*.xccheckout
24+
25+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
26+
build/
27+
DerivedData/
28+
*.moved-aside
29+
*.pbxuser
30+
!default.pbxuser
31+
*.mode1v3
32+
!default.mode1v3
33+
*.mode2v3
34+
!default.mode2v3
35+
*.perspectivev3
36+
!default.perspectivev3
37+
38+
## Obj-C/Swift specific
39+
*.hmap
40+
41+
## App packaging
42+
*.ipa
43+
*.dSYM.zip
44+
*.dSYM
45+
46+
# CocoaPods
47+
# We recommend against adding the Pods directory to your .gitignore. However
48+
# you should judge for yourself, the pros and cons are mentioned at:
49+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
50+
# Pods/
51+
# Add this line if you want to avoid checking in source code from the Xcode workspace
52+
# *.xcworkspace
53+
54+
# Carthage
55+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
56+
# Carthage/Checkouts
57+
58+
Carthage/Build/
59+
60+
# fastlane
61+
# It is recommended to not store the screenshots in the git repo.
62+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
63+
# For more information about the recommended setup visit:
64+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
65+
66+
fastlane/report.xml
67+
fastlane/Preview.html
68+
fastlane/screenshots/**/*.png
69+
fastlane/test_output
70+
71+
# Code Injection
72+
# After new code Injection tools there's a generated folder /iOSInjectionProject
73+
# https://github.com/johnno1962/injectionforxcode
74+
75+
iOSInjectionProject/
76+
77+
### Objective-C Patch ###
78+
79+
### Xcode ###
80+
# Xcode
81+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
82+
83+
84+
85+
86+
## Gcc Patch
87+
/*.gcno
88+
89+
### Xcode Patch ###
90+
*.xcodeproj/*
91+
!*.xcodeproj/project.pbxproj
92+
!*.xcodeproj/xcshareddata/
93+
!*.xcworkspace/contents.xcworkspacedata
94+
**/xcshareddata/WorkspaceSettings.xcsettings
95+
96+
# End of https://www.toptal.com/developers/gitignore/api/xcode,objective-c

Podfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Uncomment the next line to define a global platform for your project
2+
# platform :ios, '9.0'
3+
#source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
4+
5+
target 'WedprDemo' do
6+
# Comment the next line if you don't want to use dynamic frameworks
7+
use_frameworks!
8+
9+
# Pods for WedprDemo
10+
# pod 'SwiftProtobuf', '~> 1.0'
11+
pod "Protobuf",' ~> 3.11.3'
12+
# :git => "https://github.com/google/protobuf.git"
13+
14+
end

Pods/Local Podspecs/Protobuf.podspec.json

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 1399 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Protobuf/LICENSE

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)