Skip to content

Commit 56d22db

Browse files
committed
update project
1 parent 4eb1a62 commit 56d22db

21 files changed

Lines changed: 554 additions & 233 deletions

File tree

iOS/.gitignore

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
*.xcuserdata
2+
*.DS_Store
3+
*.xcscmblueprint
4+
*.framework
5+
*.a
6+
*.xcworkspacedata
7+
xcshareddata
8+
9+
*.zip
10+
agora_sdk
11+
*.xcarchive
12+
13+
DistributionSummary.plist
14+
ExportOptions.plist
15+
Packaging.log
16+
*.app
17+
18+
# Xcode
19+
#
20+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
21+
22+
## User settings
23+
xcuserdata/
24+
25+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
26+
*.xcscmblueprint
27+
*.xccheckout
28+
29+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
30+
build/
31+
DerivedData/
32+
*.moved-aside
33+
*.pbxuser
34+
!default.pbxuser
35+
*.mode1v3
36+
!default.mode1v3
37+
*.mode2v3
38+
!default.mode2v3
39+
*.perspectivev3
40+
!default.perspectivev3
41+
42+
## Obj-C/Swift specific
43+
*.hmap
44+
45+
## App packaging
46+
*.ipa
47+
*.dSYM.zip
48+
*.dSYM
49+
50+
## Playgrounds
51+
timeline.xctimeline
52+
playground.xcworkspace
53+
54+
# Swift Package Manager
55+
#
56+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
57+
# Packages/
58+
# Package.pins
59+
# Package.resolved
60+
# *.xcodeproj
61+
#
62+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
63+
# hence it is not needed unless you have added a package configuration file to your project
64+
# .swiftpm
65+
66+
.build/
67+
68+
# CocoaPods
69+
#
70+
# We recommend against adding the Pods directory to your .gitignore. However
71+
# you should judge for yourself, the pros and cons are mentioned at:
72+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
73+
74+
Pods/
75+
Podfile.lock
76+
77+
# Add this line if you want to avoid checking in source code from the Xcode workspace
78+
*.xcworkspace
79+
80+
# Carthage
81+
#
82+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
83+
# Carthage/Checkouts
84+
85+
Carthage/Build/
86+
87+
# Accio dependency management
88+
Dependencies/
89+
.accio/
90+
91+
# fastlane
92+
#
93+
# It is recommended to not store the screenshots in the git repo.
94+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
95+
# For more information about the recommended setup visit:
96+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
97+
98+
fastlane/report.xml
99+
fastlane/Preview.html
100+
fastlane/screenshots/**/*.png
101+
fastlane/test_output
102+
103+
# Code Injection
104+
#
105+
# After new code Injection tools there's a generated folder /iOSInjectionProject
106+
# https://github.com/johnno1962/injectionforxcode
107+
108+
iOSInjectionProject/

0 commit comments

Comments
 (0)