Skip to content

Commit 498c280

Browse files
committed
add gitignore
1 parent 43fddcb commit 498c280

File tree

1 file changed

+147
-0
lines changed

1 file changed

+147
-0
lines changed

.gitignore

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
.DS_Store
2+
.atom/
3+
.idea/
4+
.vscode/
5+
6+
Podfile
7+
Podfile.lock
8+
Pods/
9+
10+
xcuserdata/
11+
12+
# iOS
13+
14+
# Xcode
15+
#
16+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
17+
18+
## Build generated
19+
build/
20+
DerivedData/
21+
22+
## Various settings
23+
*.pbxuser
24+
!default.pbxuser
25+
*.mode1v3
26+
!default.mode1v3
27+
*.mode2v3
28+
!default.mode2v3
29+
*.perspectivev3
30+
!default.perspectivev3
31+
xcuserdata/
32+
33+
## Other
34+
*.moved-aside
35+
*.xccheckout
36+
*.xcscmblueprint
37+
38+
## Obj-C/Swift specific
39+
*.hmap
40+
*.ipa
41+
*.dSYM.zip
42+
*.dSYM
43+
44+
# CocoaPods
45+
#
46+
# We recommend against adding the Pods directory to your .gitignore. However
47+
# you should judge for yourself, the pros and cons are mentioned at:
48+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
49+
#
50+
# Pods/
51+
#
52+
# Add this line if you want to avoid checking in source code from the Xcode workspace
53+
# *.xcworkspace
54+
55+
# Carthage
56+
#
57+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
58+
# Carthage/Checkouts
59+
60+
Carthage/Build
61+
62+
# fastlane
63+
#
64+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
65+
# screenshots whenever they are needed.
66+
# For more information about the recommended setup visit:
67+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
68+
69+
fastlane/report.xml
70+
fastlane/Preview.html
71+
fastlane/screenshots/**/*.png
72+
fastlane/test_output
73+
74+
# Code Injection
75+
#
76+
# After new code Injection tools there's a generated folder /iOSInjectionProject
77+
# https://github.com/johnno1962/injectionforxcode
78+
79+
iOSInjectionProject/
80+
81+
82+
83+
# Built application files
84+
*.apk
85+
*.ap_
86+
87+
# Files for the ART/Dalvik VM
88+
*.dex
89+
90+
# Java class files
91+
*.class
92+
93+
# Generated files
94+
bin/
95+
gen/
96+
out/
97+
98+
# Gradle files
99+
.gradle/
100+
build/
101+
102+
# Local configuration file (sdk path, etc)
103+
local.properties
104+
105+
# Proguard folder generated by Eclipse
106+
proguard/
107+
108+
# Log Files
109+
*.log
110+
111+
# Android Studio Navigation editor temp files
112+
.navigation/
113+
114+
# Android Studio captures folder
115+
captures/
116+
117+
# IntelliJ
118+
*.iml
119+
.idea/workspace.xml
120+
.idea/tasks.xml
121+
.idea/gradle.xml
122+
.idea/assetWizardSettings.xml
123+
.idea/dictionaries
124+
.idea/libraries
125+
.idea/caches
126+
127+
# Keystore files
128+
# Uncomment the following line if you do not want to check your keystore files in.
129+
#*.jks
130+
131+
# External native build folder generated in Android Studio 2.2 and later
132+
.externalNativeBuild
133+
134+
# Google Services (e.g. APIs or Firebase)
135+
google-services.json
136+
137+
# Freeline
138+
freeline.py
139+
freeline/
140+
freeline_project_description.json
141+
142+
# fastlane
143+
fastlane/report.xml
144+
fastlane/Preview.html
145+
fastlane/screenshots
146+
fastlane/test_output
147+
fastlane/readme.md

0 commit comments

Comments
 (0)