Skip to content

Commit f45d2c3

Browse files
- Update .gitignore
1 parent d754bc4 commit f45d2c3

File tree

1 file changed

+127
-13
lines changed

1 file changed

+127
-13
lines changed

.gitignore

Lines changed: 127 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,129 @@
1-
*.iml
1+
### AndroidStudio ###
2+
# Covers files to be ignored for android development using Android Studio.
3+
4+
# Built application files
5+
*.apk
6+
*.ap_
7+
*.aab
8+
9+
# Files for the ART/Dalvik VM
10+
*.dex
11+
12+
# Java class files
13+
*.class
14+
15+
# Generated files
16+
bin/
17+
gen/
18+
out/
19+
20+
# Gradle files
221
.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
13-
.externalNativeBuild
14-
.cxx
22+
.gradle/
23+
build/
24+
25+
# Signing files
26+
.signing/
27+
28+
# Local configuration file (sdk path, etc)
1529
local.properties
30+
31+
# Log Files
32+
*.log
33+
34+
# Android Studio
35+
/*/build/
36+
/*/local.properties
37+
/*/out
38+
/*/*/build
39+
/*/*/production
40+
captures/
41+
.navigation/
42+
*.ipr
43+
*~
44+
*.swp
45+
46+
# Keystore files
47+
*.jks
48+
*.keystore
49+
50+
# Android Patch
51+
gen-external-apklibs
52+
53+
# External native build folder generated in Android Studio 2.2 and later
54+
.externalNativeBuild
55+
56+
# NDK
57+
obj/
58+
59+
# IntelliJ IDEA
60+
*.iml
61+
*.iws
62+
/out/
63+
64+
# User-specific configurations
65+
.idea/
66+
.idea/caches/
67+
.idea/libraries/
68+
.idea/shelf/
69+
.idea/workspace.xml
70+
.idea/tasks.xml
71+
.idea/.name
72+
.idea/compiler.xml
73+
.idea/copyright/profiles_settings.xml
74+
.idea/encodings.xml
75+
.idea/misc.xml
76+
.idea/modules.xml
77+
.idea/scopes/scope_settings.xml
78+
.idea/dictionaries
79+
.idea/vcs.xml
80+
.idea/jsLibraryMappings.xml
81+
.idea/datasources.xml
82+
.idea/dataSources.ids
83+
.idea/sqlDataSources.xml
84+
.idea/dynamic.xml
85+
.idea/uiDesigner.xml
86+
.idea/assetWizardSettings.xml
87+
.idea/gradle.xml
88+
.idea/jarRepositories.xml
89+
.idea/navEditor.xml
90+
*/.idea
91+
92+
# Legacy Eclipse project files
93+
.classpath
94+
.project
95+
.cproject
96+
.settings/
97+
98+
# Mobile Tools for Java (J2ME)
99+
.mtj.tmp/
100+
101+
# Package Files #
102+
*.war
103+
*.ear
104+
105+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
106+
hs_err_pid*
107+
108+
## Plugin-specific files:
109+
110+
# mpeltonen/sbt-idea plugin
111+
.idea_modules/
112+
113+
# JIRA plugin
114+
atlassian-ide-plugin.xml
115+
116+
# Mongo Explorer plugin
117+
.idea/mongoSettings.xml
118+
119+
# Crashlytics plugin (for Android Studio and IntelliJ)
120+
com_crashlytics_export_strings.xml
121+
crashlytics.properties
122+
crashlytics-build.properties
123+
fabric.properties
124+
125+
### AndroidStudio Patch ###
126+
127+
!/gradle/wrapper/gradle-wrapper.jar
128+
129+
# End of file

0 commit comments

Comments
 (0)