-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
109 lines (91 loc) · 1.55 KB
/
Copy path.gitignore
File metadata and controls
109 lines (91 loc) · 1.55 KB
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
101
102
103
104
105
106
107
108
109
# ---- Android build outputs ----
/build/
/*/build/
/app/build/
**/generated/
captures/
# ---- Gradle ----
.gradle/
**/.gradle/
!gradle/wrapper/gradle-wrapper.jar
!gradle/wrapper/gradle-wrapper.properties
gradle-app.setting
# ---- Local configuration ----
local.properties
keystore.properties
# ---- Keystores / signing ----
*.jks
*.keystore
*.pem
*.p12
*.pfx
# ---- IntelliJ / Android Studio ----
.idea/
*.iml
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/gradle.xml
.idea/**/dictionaries
.idea/**/libraries
.idea/**/assetWizardSettings.xml
.idea/**/deploymentTargetDropDown.xml
.idea/caches/
.idea/modules/
.idea/navEditor.xml
.idea/other.xml
# ---- VS Code ----
.vscode/
# ---- Kotlin / Java ----
*.class
*.kt.metadata
# ---- Logs / temp ----
*.log
*.tmp
*.temp
*.swp
*.swo
# ---- OS junk ----
.DS_Store
Thumbs.db
# ---- Crash / profiling ----
hs_err_pid*
replay_pid*
# ---- NDK / CMake (if added later) ----
.obj/
.externalNativeBuild/
.cxx/
# ---- APK / Bundles / Outputs ----
*.apk
*.aab
*.ap_
outputs/
# ---- Lint reports ----
lint/generated/
lint/intermediates/
lint/tmp/
*.sarif
# ---- Android test results ----
outputs/androidTest-results/
outputs/unit_test_results/
# ---- Cache / indexing ----
.kotlin/
.idea/kotlin/
.kotlin_module
# ---- Misc ----
/navigation.json
# ---- Keep executable scripts ----
!/gradlew
!/gradlew.bat
# ---- Ignore generated SSH key files if accidentally placed in repo root ----
ssh_private_key
ssh_public_key
ssh_private_*
ssh_public_*
2do.md
# ---- AI tooling ----
.beads/
.claude/
.cursor/
.aider/
AGENTS.md
# End of .gitignore