This repository was archived by the owner on Dec 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +94
-0
lines changed
Expand file tree Collapse file tree 1 file changed +94
-0
lines changed Original file line number Diff line number Diff line change 1+ # Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore
2+
3+ # Built application files
4+ * .apk
5+ * .aar
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+ # Uncomment the following line in case you need and you don't have the release build type files in your app
20+ # release/
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
42+ * .iml
43+ .idea /workspace.xml
44+ .idea /tasks.xml
45+ .idea /gradle.xml
46+ .idea /assetWizardSettings.xml
47+ .idea /dictionaries
48+ .idea /libraries
49+ # Android Studio 3 in .gitignore file.
50+ .idea /caches
51+ .idea /modules.xml
52+ # Comment next line if keeping position of elements in Navigation Editor is relevant for you
53+ .idea /navEditor.xml
54+
55+ # Keystore files
56+ # Uncomment the following lines if you do not want to check your keystore files in.
57+ # *.jks
58+ # *.keystore
59+
60+ # External native build folder generated in Android Studio 2.2 and later
61+ .externalNativeBuild
62+ .cxx /
63+
64+ # Google Services (e.g. APIs or Firebase)
65+ # google-services.json
66+
67+ # Freeline
68+ freeline.py
69+ freeline /
70+ freeline_project_description.json
71+
72+ # fastlane
73+ fastlane /report.xml
74+ fastlane /Preview.html
75+ fastlane /screenshots
76+ fastlane /test_output
77+ fastlane /readme.md
78+
79+ # Version control
80+ vcs.xml
81+
82+ # lint
83+ lint /intermediates /
84+ lint /generated /
85+ lint /outputs /
86+ lint /tmp /
87+ # lint/reports/
88+
89+ # Android Profiling
90+ * .hprof
91+
92+
93+ # Copied web assets
94+ app /src /main /assets /public
You can’t perform that action at this time.
0 commit comments