Skip to content

Commit 14f3559

Browse files
committed
Create .gitignore
1 parent 8e5ff41 commit 14f3559

File tree

1 file changed

+184
-0
lines changed

1 file changed

+184
-0
lines changed

.gitignore

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
### Android ###
2+
# Gradle files
3+
.gradle/
4+
build/
5+
6+
# Local configuration file (sdk path, etc)
7+
local.properties
8+
9+
# Log/OS Files
10+
*.log
11+
12+
# Android Studio generated files and folders
13+
captures/
14+
.externalNativeBuild/
15+
.cxx/
16+
*.apk
17+
output.json
18+
19+
# IntelliJ
20+
*.iml
21+
.idea/
22+
misc.xml
23+
deploymentTargetDropDown.xml
24+
render.experimental.xml
25+
26+
# Keystore files
27+
*.jks
28+
*.keystore
29+
30+
# Google Services (e.g. APIs or Firebase)
31+
google-services.json
32+
33+
# Android Profiling
34+
*.hprof
35+
36+
### Android Patch ###
37+
gen-external-apklibs
38+
39+
# Replacement of .externalNativeBuild directories introduced
40+
# with Android Studio 3.5.
41+
42+
### Kotlin ###
43+
# Compiled class file
44+
*.class
45+
46+
# Log file
47+
48+
# BlueJ files
49+
*.ctxt
50+
51+
# Mobile Tools for Java (J2ME)
52+
.mtj.tmp/
53+
54+
# Package Files #
55+
*.jar
56+
*.war
57+
*.nar
58+
*.ear
59+
*.zip
60+
*.tar.gz
61+
*.rar
62+
63+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
64+
hs_err_pid*
65+
replay_pid*
66+
67+
### AndroidStudio ###
68+
# Covers files to be ignored for android development using Android Studio.
69+
70+
# Built application files
71+
*.ap_
72+
*.aab
73+
74+
# Files for the ART/Dalvik VM
75+
*.dex
76+
77+
# Java class files
78+
79+
# Generated files
80+
bin/
81+
gen/
82+
out/
83+
84+
# Gradle files
85+
.gradle
86+
87+
# Signing files
88+
.signing/
89+
90+
# Local configuration file (sdk path, etc)
91+
92+
# Proguard folder generated by Eclipse
93+
proguard/
94+
95+
# Log Files
96+
97+
# Android Studio
98+
/*/build/
99+
/*/local.properties
100+
/*/out
101+
/*/*/build
102+
/*/*/production
103+
.navigation/
104+
*.ipr
105+
*~
106+
*.swp
107+
108+
# Keystore files
109+
110+
# Google Services (e.g. APIs or Firebase)
111+
# google-services.json
112+
113+
# Android Patch
114+
115+
# External native build folder generated in Android Studio 2.2 and later
116+
.externalNativeBuild
117+
118+
# NDK
119+
obj/
120+
121+
# IntelliJ IDEA
122+
*.iws
123+
/out/
124+
125+
# User-specific configurations
126+
.idea/caches/
127+
.idea/libraries/
128+
.idea/shelf/
129+
.idea/workspace.xml
130+
.idea/tasks.xml
131+
.idea/.name
132+
.idea/compiler.xml
133+
.idea/copyright/profiles_settings.xml
134+
.idea/encodings.xml
135+
.idea/misc.xml
136+
.idea/modules.xml
137+
.idea/scopes/scope_settings.xml
138+
.idea/dictionaries
139+
.idea/vcs.xml
140+
.idea/jsLibraryMappings.xml
141+
.idea/datasources.xml
142+
.idea/dataSources.ids
143+
.idea/sqlDataSources.xml
144+
.idea/dynamic.xml
145+
.idea/uiDesigner.xml
146+
.idea/assetWizardSettings.xml
147+
.idea/gradle.xml
148+
.idea/jarRepositories.xml
149+
.idea/navEditor.xml
150+
151+
# Legacy Eclipse project files
152+
.classpath
153+
.project
154+
.cproject
155+
.settings/
156+
157+
# Mobile Tools for Java (J2ME)
158+
159+
# Package Files #
160+
161+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
162+
163+
## Plugin-specific files:
164+
165+
# mpeltonen/sbt-idea plugin
166+
.idea_modules/
167+
168+
# JIRA plugin
169+
atlassian-ide-plugin.xml
170+
171+
# Mongo Explorer plugin
172+
.idea/mongoSettings.xml
173+
174+
# Crashlytics plugin (for Android Studio and IntelliJ)
175+
com_crashlytics_export_strings.xml
176+
crashlytics.properties
177+
crashlytics-build.properties
178+
fabric.properties
179+
180+
### AndroidStudio Patch ###
181+
182+
!/gradle/wrapper/gradle-wrapper.jar
183+
184+
# End of https://www.toptal.com/developers/gitignore/api/android,androidstudio,kotlin

0 commit comments

Comments
 (0)