Skip to content

Commit 00abde5

Browse files
committed
initial gitignore
0 parents  commit 00abde5

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed

.gitignore

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
*.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+
.idea
11+
.DS_Store
12+
/build
13+
/captures
14+
.externalNativeBuild
15+
.cxx
16+
17+
18+
####### Below is Android specific gitignore ##########
19+
# Built application files
20+
*.apk
21+
*.aar
22+
*.ap_
23+
*.aab
24+
25+
# Files for the ART/Dalvik VM
26+
*.dex
27+
28+
# Java class files
29+
*.class
30+
31+
# Generated files
32+
bin/
33+
gen/
34+
out/
35+
# Uncomment the following line in case you need and you don't have the release build type files in your app
36+
# release/
37+
38+
# Gradle files
39+
.gradle/
40+
build/
41+
42+
# Local configuration file (sdk path, etc)
43+
local.properties
44+
45+
# Proguard folder generated by Eclipse
46+
proguard/
47+
48+
# Log Files
49+
*.log
50+
51+
# Android Studio Navigation editor temp files
52+
.navigation/
53+
54+
# Android Studio captures folder
55+
captures/
56+
57+
# IntelliJ
58+
*.iml
59+
.idea/workspace.xml
60+
.idea/tasks.xml
61+
.idea/gradle.xml
62+
.idea/assetWizardSettings.xml
63+
.idea/dictionaries
64+
.idea/libraries
65+
# Android Studio 3 in .gitignore file.
66+
.idea/caches
67+
.idea/modules.xml
68+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
69+
.idea/navEditor.xml
70+
71+
# Keystore files
72+
# Uncomment the following lines if you do not want to check your keystore files in.
73+
#*.jks
74+
#*.keystore
75+
76+
# External native build folder generated in Android Studio 2.2 and later
77+
.externalNativeBuild
78+
.cxx/
79+
80+
# Google Services (e.g. APIs or Firebase)
81+
# google-services.json
82+
83+
# Freeline
84+
freeline.py
85+
freeline/
86+
freeline_project_description.json
87+
88+
# fastlane
89+
fastlane/report.xml
90+
fastlane/Preview.html
91+
fastlane/screenshots
92+
fastlane/test_output
93+
fastlane/readme.md
94+
95+
# Version control
96+
vcs.xml
97+
98+
# lint
99+
lint/intermediates/
100+
lint/generated/
101+
lint/outputs/
102+
lint/tmp/
103+
# lint/reports/

0 commit comments

Comments
 (0)