Skip to content

Commit efb64ba

Browse files
committed
Initial Commit
0 parents  commit efb64ba

File tree

16 files changed

+948
-0
lines changed

16 files changed

+948
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)