Skip to content

Commit 906b02e

Browse files
author
Pablo Orgaz
committed
Update .gitignore
2 parents 16009a8 + 009cbf0 commit 906b02e

File tree

3 files changed

+239
-11
lines changed

3 files changed

+239
-11
lines changed

.gitignore

Lines changed: 208 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,210 @@
1+
2+
# Created by https://www.gitignore.io/api/java,gradle,kotlin,android,intellij
3+
# Edit at https://www.gitignore.io/?templates=java,gradle,kotlin,android,intellij
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+
22+
# Gradle files
23+
.gradle/
24+
build/
25+
26+
# Local configuration file (sdk path, etc)
27+
local.properties
28+
29+
# Proguard folder generated by Eclipse
30+
proguard/
31+
32+
# Log Files
33+
*.log
34+
35+
# Android Studio Navigation editor temp files
36+
.navigation/
37+
38+
# Android Studio captures folder
39+
captures/
40+
41+
# IntelliJ
142
*.iml
2-
.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
10-
.DS_Store
11-
/build
12-
/captures
43+
.idea/workspace.xml
44+
.idea/tasks.xml
45+
.idea/gradle.xml
46+
.idea/assetWizardSettings.xml
47+
.idea/dictionaries
48+
.idea/libraries
49+
.idea/caches
50+
51+
# Keystore files
52+
# Uncomment the following lines if you do not want to check your keystore files in.
53+
#*.jks
54+
#*.keystore
55+
56+
# External native build folder generated in Android Studio 2.2 and later
1357
.externalNativeBuild
58+
59+
# Google Services (e.g. APIs or Firebase)
60+
google-services.json
61+
62+
# Freeline
63+
freeline.py
64+
freeline/
65+
freeline_project_description.json
66+
67+
# fastlane
68+
fastlane/report.xml
69+
fastlane/Preview.html
70+
fastlane/screenshots
71+
fastlane/test_output
72+
fastlane/readme.md
73+
74+
### Android Patch ###
75+
gen-external-apklibs
76+
77+
### Intellij ###
78+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
79+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
80+
81+
# User-specific stuff
82+
.idea/**/workspace.xml
83+
.idea/**/tasks.xml
84+
.idea/**/usage.statistics.xml
85+
.idea/**/dictionaries
86+
.idea/**/shelf
87+
88+
# Generated files
89+
.idea/**/contentModel.xml
90+
91+
# Sensitive or high-churn files
92+
.idea/**/dataSources/
93+
.idea/**/dataSources.ids
94+
.idea/**/dataSources.local.xml
95+
.idea/**/sqlDataSources.xml
96+
.idea/**/dynamic.xml
97+
.idea/**/uiDesigner.xml
98+
.idea/**/dbnavigator.xml
99+
100+
# Gradle
101+
.idea/**/gradle.xml
102+
.idea/**/libraries
103+
104+
# Gradle and Maven with auto-import
105+
# When using Gradle or Maven with auto-import, you should exclude module files,
106+
# since they will be recreated, and may cause churn. Uncomment if using
107+
# auto-import.
108+
# .idea/modules.xml
109+
# .idea/*.iml
110+
# .idea/modules
111+
112+
# CMake
113+
cmake-build-*/
114+
115+
# Mongo Explorer plugin
116+
.idea/**/mongoSettings.xml
117+
118+
# File-based project format
119+
*.iws
120+
121+
# IntelliJ
122+
123+
# mpeltonen/sbt-idea plugin
124+
.idea_modules/
125+
126+
# JIRA plugin
127+
atlassian-ide-plugin.xml
128+
129+
# Cursive Clojure plugin
130+
.idea/replstate.xml
131+
132+
# Crashlytics plugin (for Android Studio and IntelliJ)
133+
com_crashlytics_export_strings.xml
134+
crashlytics.properties
135+
crashlytics-build.properties
136+
fabric.properties
137+
138+
# Editor-based Rest Client
139+
.idea/httpRequests
140+
141+
# Android studio 3.1+ serialized cache file
142+
.idea/caches/build_file_checksums.ser
143+
144+
### Intellij Patch ###
145+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
146+
147+
# *.iml
148+
# modules.xml
149+
# .idea/misc.xml
150+
# *.ipr
151+
152+
# Sonarlint plugin
153+
.idea/sonarlint
154+
155+
### Java ###
156+
# Compiled class file
157+
158+
# Log file
159+
160+
# BlueJ files
161+
*.ctxt
162+
163+
# Mobile Tools for Java (J2ME)
164+
.mtj.tmp/
165+
166+
# Package Files #
167+
*.jar
168+
*.war
169+
*.nar
170+
*.ear
171+
*.zip
172+
*.tar.gz
173+
*.rar
174+
175+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
176+
hs_err_pid*
177+
178+
### Kotlin ###
179+
# Compiled class file
180+
181+
# Log file
182+
183+
# BlueJ files
184+
185+
# Mobile Tools for Java (J2ME)
186+
187+
# Package Files #
188+
189+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
190+
191+
### Gradle ###
192+
.gradle
193+
/build/
194+
195+
# Ignore Gradle GUI config
196+
gradle-app.setting
197+
198+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
199+
!gradle-wrapper.jar
200+
201+
# Cache of project
202+
.gradletasknamecache
203+
204+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
205+
# gradle/wrapper/gradle-wrapper.properties
206+
207+
### Gradle Patch ###
208+
**/build/
209+
210+
# End of https://www.gitignore.io/api/java,gradle,kotlin,android,intellij

.idea/modules.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)