-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
351 lines (275 loc) · 6.59 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# Mac OS files
**/.DS_Store
**/.AppleDouble
**/.LSOverride
# Version control
vcs.xml
# Log Files
*.log
# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/
# Google Services (e.g. APIs or Firebase)
google-services.json
# Firebase
firebase.json
.firebaserc
firebase-debug.log
.firebase
# Freeline
freeline.py
freeline/
freeline_project_description.json
# Fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/screenshots/**/*.png
fastlane/test_output
fastlane/readme.md
# Flutter
lib/generated_plugin_registrant.dart
**/GeneratedPluginRegistrant.java
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android APK files
/codebase/android/app/debug
/codebase/android/app/release
/codebase/flutter/app/debug
/codebase/flutter/app/profile
/codebase/flutter/app/release
# Built application files
*.apk
*.aar
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Keystore files
key.properties
*.jks
*.keystore
# API keys
**/apikey.properties
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# IntelliJ IDEA
*.iws
*.iml
*.ipr
!**/src/main/**/out/
!**/src/test/**/out/
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
.idea/shelf/
.idea/workspace.xml
.idea/misc.xml
.idea/gradle.xml
.idea/inspectionProfiles/Project_Default.xml
# Gradle
.gradle/
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
# Kotlin 2.0
.kotlin/
# lint
**/lint/intermediates/
**/lint/generated/
**/lint/outputs/
**/lint/tmp/
# lint/reports/
# Android Studio - Navigation editor temp files
.navigation/
# Android Studio - Captures - screenshots and video captures
**/captures/
# Android Studio - External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/
**/out
**/shelf/
# IDEA
.idea
# IDEA - Contains information about your workspace
**/.idea/workspace.xml
**/.idea/tasks.xml
# IDEA - The local path to your gradle version, and also contains the path to your module
**/.idea/gradle.xml
# IDEA - Last icon added with the Android Studio Wizard
**/.idea/assetWizardSettings.xml
# IDEA - Uncomment if dictionaries are not required in vcs
# **/.idea/dictionaries
# IDEA - Indicates where the jar files of your libraries are stored
**/.idea/libraries
# IDEA - It is auto-generated and has only redundant information about remote jar repositories.
**/.idea/jarRepositories.xml
# IDEA - Compiler configuration
**/.idea/compiler.xml
# IDEA - Git toolbox
**/.idea/git_toolbox_blame.xml
**/.idea/git_toolbox_prj.xml
# IDEA - Miscellaneous
**/.idea/.name
**/.idea/misc.xml
# IDEA - Deployment
**/.idea/deploymentTargetDropDown.xml
# IDEA - Experimental ui
**/.idea/render.experimental.xml
# IDEA - Kotlin plugin settings
**/.idea/kotlinc.xml
# IDEA - Stores the run configurations you may add by clicking Edit Configurations.
**/.idea/runConfigurations.xml
**/.idea/runConfigurations
# IDEA - Android Studio 3 in .gitignore file.
**/.idea/caches
# IDEA - Path to your modules .iml file
**/.idea/modules.xml
# IDEA - Comment next line if keeping position of elements in Navigation Editor is relevant for you
**/.idea/navEditor.xml
# IDEA - Android test user preferences
**/.idea/androidTestResultsUserPreferences.xml
# IDEA - Code style
**/.idea/codeStyles/codeStyleConfig.xml
**/.idea/codeStyles/Project.xml
# IDEA - App insights from developer console
**/.idea/appInsightsSettings.xml
# IDEA - Project defaults
**/.idea/inspectionProfiles/Project_Default.xml
# IDEA - Deployment config
**/.idea/deploymentTargetSelector.xml
# IDEA - Project migrations
**/.idea/migrations.xml
# IDEA - Detekt
**/.idea/detekt.xml
# IDEA - Device selection config
**/.idea/other.xml
# Eclipse
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
!**/src/main/**/bin/
!**/src/test/**/bin/
# NetBeans
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
# VS Code
.vscode/
# Xcode - Icon must end with two \r
Icon
# Xcode - Thumbnails
._*
# Xcode - Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Xcode - Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
## Xcode - User settings
xcuserdata/
## Xcode - compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout
## iOS - compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
## iOS - Obj-C/Swift specific
*.hmap
## iOS - App packaging
*.ipa
*.dSYM.zip
*.dSYM
## iOS - Playgrounds
timeline.xctimeline
playground.xcworkspace
# iOS - Swift Package Manager
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
# *.xcodeproj
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
# .swiftpm
.build/
# iOS - CocoaPods
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# Pods/
# Xcode - Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace
# iOS - Carthage
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build/
# Xcode - Accio dependency management
Dependencies/
.accio/
# iOS - Code Injection
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode
iOSInjectionProject/
### Xcode ###
## Xcode 8 and earlier
### Xcode - Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcodeproj/project.xcworkspace/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings
# Miscellaneous
*.pyc
*.swp
.atom/
.buildlog/
.history
**.svn/