1
- # Secret Keys
1
+ # # CUSTOM
2
+
2
3
Secrets.xcconfig
4
+ * .p8
5
+ fastlane /Credentials.json
6
+ build /
7
+ swiftlint /build_phases /
8
+ SourcePackages /
9
+
10
+ # ## macOS ###
11
+ # General
12
+ .DS_Store
13
+ .AppleDouble
14
+ .LSOverride
15
+
16
+ # Icon must end with two \r
17
+ Icon
18
+
19
+ # Thumbnails
20
+ ._ *
3
21
4
22
# Files that might appear in the root of a volume
5
23
.DocumentRevisions-V100
@@ -10,11 +28,18 @@ Secrets.xcconfig
10
28
.VolumeIcon.icns
11
29
.com.apple.timemachine.donotpresent
12
30
13
- # General
14
- .DS_Store
15
- .AppleDouble
16
- .LSOverride
31
+ # Directories potentially created on remote AFP share
32
+ .AppleDB
33
+ .AppleDesktop
34
+ Network Trash Folder
35
+ Temporary Items
36
+ .apdisk
37
+
38
+ # ## macOS Patch ###
39
+ # iCloud generated files
40
+ * .icloud
17
41
42
+ # ## Swift ###
18
43
# Xcode
19
44
#
20
45
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
@@ -52,32 +77,26 @@ timeline.xctimeline
52
77
playground.xcworkspace
53
78
54
79
# Swift Package Manager
55
- #
56
80
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
57
81
# Packages/
58
82
# Package.pins
59
83
# Package.resolved
60
84
# *.xcodeproj
61
- #
62
85
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
63
86
# hence it is not needed unless you have added a package configuration file to your project
64
87
# .swiftpm
65
88
66
89
.build /
67
90
68
91
# CocoaPods
69
- #
70
92
# We recommend against adding the Pods directory to your .gitignore. However
71
93
# you should judge for yourself, the pros and cons are mentioned at:
72
94
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
73
- #
74
95
# Pods/
75
- #
76
96
# Add this line if you want to avoid checking in source code from the Xcode workspace
77
97
# *.xcworkspace
78
98
79
99
# Carthage
80
- #
81
100
# Add this line if you want to avoid checking in source code from Carthage dependencies.
82
101
# Carthage/Checkouts
83
102
@@ -88,7 +107,6 @@ Dependencies/
88
107
.accio /
89
108
90
109
# fastlane
91
- #
92
110
# It is recommended to not store the screenshots in the git repo.
93
111
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
94
112
# For more information about the recommended setup visit:
@@ -100,8 +118,105 @@ fastlane/screenshots/**/*.png
100
118
fastlane /test_output
101
119
102
120
# Code Injection
103
- #
104
121
# After new code Injection tools there's a generated folder /iOSInjectionProject
105
122
# https://github.com/johnno1962/injectionforxcode
106
123
107
124
iOSInjectionProject /
125
+
126
+ # ## Xcode ###
127
+
128
+ # # Xcode 8 and earlier
129
+
130
+ # ## Xcode Patch ###
131
+ * .xcodeproj /*
132
+ ! * .xcodeproj /project.pbxproj
133
+ ! * .xcodeproj /xcshareddata /
134
+ ! * .xcodeproj /project.xcworkspace /
135
+ ! * .xcworkspace /contents.xcworkspacedata
136
+ /* .gcno
137
+ ** /xcshareddata /WorkspaceSettings.xcsettings
138
+
139
+ # Fastlane
140
+
141
+ * .gem
142
+ * .rbc
143
+ /.config
144
+ coverage /
145
+ /InstalledFiles
146
+ /pkg /
147
+ /spec /reports /
148
+ /test /tmp /
149
+ /test /version_tmp /
150
+ /tmp /
151
+ rspec_logs.json
152
+ test_output /
153
+ .DS_STORE
154
+ .DS_Store
155
+ .keys
156
+ * .swp
157
+
158
+ # # Specific to Android
159
+ .gradle /
160
+ * .iml
161
+ local.properties
162
+
163
+ # # Specific to screengrab
164
+ /screengrab /example /fastlane /metadata /
165
+ /screengrab /target /
166
+
167
+ # # Specific to RubyMotion:
168
+ .dat *
169
+ .repl_history
170
+ build /
171
+
172
+ # # Documentation cache and generated files:
173
+ /.yardoc /
174
+ /_yardoc /
175
+ /doc /
176
+ /rdoc /
177
+
178
+ # # Environment normalisation:
179
+ /.bundle /
180
+ /lib /bundler /man /
181
+
182
+ # for a library or gem, you might want to ignore these files since the code is
183
+ # intended to run in multiple environments; otherwise, check them in:
184
+ # Gemfile.lock
185
+ .ruby-version
186
+ .ruby-gemset
187
+
188
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
189
+ .rvmrc
190
+
191
+ # fastlane specific
192
+ /* .itmsp
193
+ .idea
194
+ .rakeTasks
195
+ spec /fixtures /* .itmsp /* .png
196
+ /integration
197
+ ** /report.xml
198
+ ** /.bundle
199
+ fastlane /lib /fastlane /plugins /template /.rubocop.yml
200
+ snapshot /example /fastlane /README.md
201
+ snapshot /example /fastlane /screenshots
202
+ fastlane /FastlaneRunner
203
+ fastlane /swift /FastlaneRunner
204
+ vendor
205
+
206
+ # iOS specific ignores, used in sample projects inside the repo
207
+ DerivedData
208
+ * .pbxuser
209
+ ! default.pbxuser
210
+ * .mode1v3
211
+ ! default.mode1v3
212
+ * .mode2v3
213
+ ! default.mode2v3
214
+ * .perspectivev3
215
+ ! default.perspectivev3
216
+ xcuserdata /
217
+ * .moved-aside
218
+ * .xccheckout
219
+ * .xcscmblueprint
220
+
221
+ # Dotenv
222
+ .env
0 commit comments