Skip to content

Commit ee5ea70

Browse files
authored
chore(android): added git ignore files
1 parent 907a836 commit ee5ea70

File tree

2 files changed

+169
-0
lines changed

2 files changed

+169
-0
lines changed

android/.gitignore

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

android/Server/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.lock

0 commit comments

Comments
 (0)