-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.gitignore
100 lines (82 loc) · 2.59 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
###############################################################################
# BUILD OUTPUTS
###############################################################################
# Gradle build cache and output
.gradle/
build/
generated/
# Ignore generated binaries and other typical build artifacts
bin/
gen/
out/
# Android packaged/bundled application files
*.apk
*.aab
# Dalvik/ART VM bytecode
*.dex
# Java/Kotlin class files
*.class
# Release artifacts (uncomment or adjust as needed)
app/release/*
release/
###############################################################################
# LOCAL CONFIG / ENV FILES
###############################################################################
# SDK path and other local configurations
local.properties
# Proguard folder generated by Eclipse
proguard/
###############################################################################
# LOG / OS FILES
###############################################################################
# Log files
*.log
# macOS Finder metadata
.DS_Store
# Windows thumbnail cache files (if needed)
Thumbs.db
###############################################################################
# ANDROID STUDIO / INTELLIJ
###############################################################################
# Android Studio captures folder
captures/
# Android Studio generated external native build folders
.externalNativeBuild/
.cxx/
# Gradle user-specific settings in IntelliJ/Android Studio
*.iml
.idea/
# If you'd like to keep your code style settings in VCS, leave the negated lines
.idea/*
!.idea/codeStyles
/.idea/codeStyles/*
!/.idea/codeStyles/Project.xml
!/.idea/codeStyles/codeStyleConfig.xml
# Other IntelliJ/AS config files
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml
.navigation/
.idea/libraries
.idea/caches
.idea/modules.xml
.idea/navEditor.xml
###############################################################################
# ANDROID PROFILING
###############################################################################
*.hprof
###############################################################################
# VERSION CONTROL SYSTEM
###############################################################################
vcs.xml
###############################################################################
# LINT
###############################################################################
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
###############################################################################
# KOTLIN
###############################################################################
.kotlin