Skip to content

Commit df21352

Browse files
committed
Update git ignore and remove the .idea folder that was committed.
1 parent 168f42f commit df21352

7 files changed

Lines changed: 271 additions & 171 deletions

File tree

.gitignore

Lines changed: 271 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,274 @@
1+
2+
# Created by https://www.gitignore.io/api/android,intellij,androidstudio
3+
# Edit at https://www.gitignore.io/?templates=android,intellij,androidstudio
4+
5+
### Android ###
6+
# Built application files
7+
*.apk
8+
*.ap_
9+
*.aab
10+
11+
# Files for the ART/Dalvik VM
12+
*.dex
13+
14+
# Java class files
15+
*.class
16+
17+
# Generated files
18+
bin/
19+
gen/
20+
out/
21+
release/
22+
23+
# Gradle files
24+
.gradle/
25+
build/
26+
27+
# Local configuration file (sdk path, etc)
28+
local.properties
29+
30+
# Proguard folder generated by Eclipse
31+
proguard/
32+
33+
# Log Files
34+
*.log
35+
36+
# Android Studio Navigation editor temp files
37+
.navigation/
38+
39+
# Android Studio captures folder
40+
captures/
41+
42+
# IntelliJ
143
*.iml
44+
.idea/workspace.xml
45+
.idea/tasks.xml
46+
.idea/gradle.xml
47+
.idea/assetWizardSettings.xml
48+
.idea/dictionaries
49+
.idea/libraries
50+
# Android Studio 3 in .gitignore file.
51+
.idea/caches
52+
.idea/modules.xml
53+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
54+
.idea/navEditor.xml
55+
56+
# Keystore files
57+
# Uncomment the following lines if you do not want to check your keystore files in.
58+
#*.jks
59+
#*.keystore
60+
61+
# External native build folder generated in Android Studio 2.2 and later
62+
.externalNativeBuild
63+
64+
# Google Services (e.g. APIs or Firebase)
65+
# google-services.json
66+
67+
# Freeline
68+
freeline.py
69+
freeline/
70+
freeline_project_description.json
71+
72+
# fastlane
73+
fastlane/report.xml
74+
fastlane/Preview.html
75+
fastlane/screenshots
76+
fastlane/test_output
77+
fastlane/readme.md
78+
79+
# Version control
80+
vcs.xml
81+
82+
# lint
83+
lint/intermediates/
84+
lint/generated/
85+
lint/outputs/
86+
lint/tmp/
87+
# lint/reports/
88+
89+
### Android Patch ###
90+
gen-external-apklibs
91+
output.json
92+
93+
### Intellij ###
94+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
95+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
96+
97+
# User-specific stuff
98+
.idea/**/workspace.xml
99+
.idea/**/tasks.xml
100+
.idea/**/usage.statistics.xml
101+
.idea/**/dictionaries
102+
.idea/**/shelf
103+
104+
# Generated files
105+
.idea/**/contentModel.xml
106+
107+
# Sensitive or high-churn files
108+
.idea/**/dataSources/
109+
.idea/**/dataSources.ids
110+
.idea/**/dataSources.local.xml
111+
.idea/**/sqlDataSources.xml
112+
.idea/**/dynamic.xml
113+
.idea/**/uiDesigner.xml
114+
.idea/**/dbnavigator.xml
115+
116+
# Gradle
117+
.idea/**/gradle.xml
118+
.idea/**/libraries
119+
120+
# Gradle and Maven with auto-import
121+
# When using Gradle or Maven with auto-import, you should exclude module files,
122+
# since they will be recreated, and may cause churn. Uncomment if using
123+
# auto-import.
124+
# .idea/modules.xml
125+
# .idea/*.iml
126+
# .idea/modules
127+
# *.iml
128+
# *.ipr
129+
130+
# CMake
131+
cmake-build-*/
132+
133+
# Mongo Explorer plugin
134+
.idea/**/mongoSettings.xml
135+
136+
# File-based project format
137+
*.iws
138+
139+
# IntelliJ
140+
141+
# mpeltonen/sbt-idea plugin
142+
.idea_modules/
143+
144+
# JIRA plugin
145+
atlassian-ide-plugin.xml
146+
147+
# Cursive Clojure plugin
148+
.idea/replstate.xml
149+
150+
# Crashlytics plugin (for Android Studio and IntelliJ)
151+
com_crashlytics_export_strings.xml
152+
crashlytics.properties
153+
crashlytics-build.properties
154+
fabric.properties
155+
156+
# Editor-based Rest Client
157+
.idea/httpRequests
158+
159+
# Android studio 3.1+ serialized cache file
160+
.idea/caches/build_file_checksums.ser
161+
162+
### Intellij Patch ###
163+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
164+
165+
# *.iml
166+
# modules.xml
167+
# .idea/misc.xml
168+
# *.ipr
169+
170+
# Sonarlint plugin
171+
.idea/sonarlint
172+
173+
### AndroidStudio ###
174+
# Covers files to be ignored for android development using Android Studio.
175+
176+
# Built application files
177+
178+
# Files for the ART/Dalvik VM
179+
180+
# Java class files
181+
182+
# Generated files
183+
184+
# Gradle files
2185
.gradle
3-
/local.properties
4-
/.idea/caches
5-
/.idea/libraries
6-
/.idea/modules.xml
7-
/.idea/workspace.xml
8-
/.idea/navEditor.xml
9-
/.idea/assetWizardSettings.xml
186+
187+
# Signing files
188+
.signing/
189+
190+
# Local configuration file (sdk path, etc)
191+
192+
# Proguard folder generated by Eclipse
193+
194+
# Log Files
195+
196+
# Android Studio
197+
/*/build/
198+
/*/local.properties
199+
/*/out
200+
/*/*/build
201+
/*/*/production
202+
*.ipr
203+
*~
204+
*.swp
205+
206+
# Android Patch
207+
208+
# External native build folder generated in Android Studio 2.2 and later
209+
210+
# NDK
211+
obj/
212+
213+
# IntelliJ IDEA
214+
/out/
215+
216+
# User-specific configurations
217+
.idea/caches/
218+
.idea/libraries/
219+
.idea/shelf/
220+
.idea/.name
221+
.idea/compiler.xml
222+
.idea/copyright/profiles_settings.xml
223+
.idea/encodings.xml
224+
.idea/misc.xml
225+
.idea/scopes/scope_settings.xml
226+
.idea/vcs.xml
227+
.idea/jsLibraryMappings.xml
228+
.idea/datasources.xml
229+
.idea/dataSources.ids
230+
.idea/sqlDataSources.xml
231+
.idea/dynamic.xml
232+
.idea/uiDesigner.xml
233+
234+
# OS-specific files
10235
.DS_Store
11-
/build
12-
/captures
13-
.externalNativeBuild
14-
.cxx
236+
.DS_Store?
237+
._*
238+
.Spotlight-V100
239+
.Trashes
240+
ehthumbs.db
241+
Thumbs.db
242+
243+
# Legacy Eclipse project files
244+
.classpath
245+
.project
246+
.cproject
247+
.settings/
248+
249+
# Mobile Tools for Java (J2ME)
250+
.mtj.tmp/
251+
252+
# Package Files #
253+
*.war
254+
*.ear
255+
256+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
257+
hs_err_pid*
258+
259+
## Plugin-specific files:
260+
261+
# mpeltonen/sbt-idea plugin
262+
263+
# JIRA plugin
264+
265+
# Mongo Explorer plugin
266+
.idea/mongoSettings.xml
267+
268+
# Crashlytics plugin (for Android Studio and IntelliJ)
269+
270+
### AndroidStudio Patch ###
271+
272+
!/gradle/wrapper/gradle-wrapper.jar
273+
274+
# End of https://www.gitignore.io/api/android,intellij,androidstudio

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)