Skip to content

Commit e3a31f5

Browse files
committed
Adds .gitignore
1 parent 817d06a commit e3a31f5

File tree

1 file changed

+147
-0
lines changed

1 file changed

+147
-0
lines changed

.gitignore

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
# Created by http://www.gitignore.io
2+
3+
manifest-merger-release-report.txt
4+
5+
*.hmap
6+
*.ipa
7+
*.dSYM.zip
8+
*.dSYM
9+
10+
.gitwriketaskid
11+
12+
data_build/
13+
14+
# fastlane specific
15+
fastlane/report.xml
16+
fastlane/README.md
17+
fastlane/Preview.html
18+
fastlane/screenshots
19+
fastlane/test_output
20+
21+
### Xcode ###
22+
build/
23+
*.pbxuser
24+
!default.pbxuser
25+
*.mode1v3
26+
!default.mode1v3
27+
*.mode2v3
28+
!default.mode2v3
29+
*.perspectivev3
30+
!default.perspectivev3
31+
xcuserdata
32+
*.xccheckout
33+
*.moved-aside
34+
DerivedData
35+
*.xcuserstate
36+
37+
*.iml
38+
.DS_Store
39+
*~
40+
build
41+
*.pbxuser
42+
*.mode1v3
43+
*.mode2v3
44+
*.perspectivev3
45+
*.pyc
46+
.svn
47+
xcuserdata
48+
.settings/
49+
.metadata
50+
tmp
51+
.fastdev.lock
52+
build.log
53+
coffee_js
54+
bin/
55+
gen/
56+
Titanium/
57+
*.orig
58+
.gradle/
59+
workspace.xml
60+
61+
# Created by http://www.gitignore.io
62+
63+
### OSX ###
64+
.DS_Store
65+
.AppleDouble
66+
.LSOverride
67+
68+
# Icon must end with two \r
69+
Icon
70+
71+
72+
# Thumbnails
73+
._*
74+
75+
# Files that might appear on external disk
76+
.Spotlight-V100
77+
.Trashes
78+
79+
# Directories potentially created on remote AFP share
80+
.AppleDB
81+
.AppleDesktop
82+
Network Trash Folder
83+
Temporary Items
84+
.apdisk
85+
86+
87+
### Android ###
88+
# Built application files
89+
*.apk
90+
*.ap_
91+
92+
# Files for the Dalvik VM
93+
*.dex
94+
95+
# Java class files
96+
*.class
97+
98+
# Generated files
99+
bin/
100+
gen/
101+
102+
# Gradle files
103+
.gradle/
104+
build/
105+
106+
# Local configuration file (sdk path, etc)
107+
local.properties
108+
109+
# Proguard folder generated by Eclipse
110+
proguard/
111+
112+
#Log Files
113+
*.log
114+
115+
116+
### Intellij ###
117+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
118+
119+
## Directory-based project format
120+
.idea/
121+
# if you remove the above rule, at least ignore user-specific stuff:
122+
# .idea/workspace.xml
123+
# .idea/tasks.xml
124+
# and these sensitive or high-churn files:
125+
# .idea/dataSources.ids
126+
# .idea/dataSources.xml
127+
# .idea/sqlDataSources.xml
128+
# .idea/dynamic.xml
129+
130+
## File-based project format
131+
*.ipr
132+
*.iml
133+
*.iws
134+
135+
## Additional for IntelliJ
136+
out/
137+
captures/
138+
139+
# generated by mpeltonen/sbt-idea plugin
140+
.idea_modules/
141+
142+
# generated by JIRA plugin
143+
atlassian-ide-plugin.xml
144+
145+
# generated by Crashlytics plugin (for Android Studio and Intellij)
146+
com_crashlytics_export_strings.xml
147+

0 commit comments

Comments
 (0)