Skip to content

Commit 9aec40a

Browse files
committed
chore: improve gitignore for Android/Gradle project
1 parent 0309474 commit 9aec40a

1 file changed

Lines changed: 49 additions & 8 deletions

File tree

.gitignore

Lines changed: 49 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,54 @@
1-
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea
1+
# OS files
52
.DS_Store
6-
/build
7-
/captures
8-
.externalNativeBuild
9-
.cxx
3+
Thumbs.db
4+
5+
# IDE files
6+
.idea/
7+
*.iml
8+
.vscode/
9+
10+
# Gradle and build output
11+
.gradle/
12+
build/
13+
**/build/
14+
captures/
15+
16+
# Android local config
17+
local.properties
18+
19+
# Android Studio generated files
20+
.externalNativeBuild/
21+
.cxx/
22+
23+
# Native build artifacts
24+
*.o
25+
*.obj
26+
*.so
27+
*.a
28+
*.dylib
29+
*.dll
30+
*.exe
31+
*.ninja
32+
33+
# CMake and NDK intermediate files
34+
**/CMakeFiles/
35+
**/CMakeCache.txt
36+
**/cmake_install.cmake
37+
**/compile_commands.json
38+
39+
# Packaged artifacts
1040
*.apk
1141
*.aab
42+
*.ap_
43+
44+
# Logs
45+
*.log
46+
47+
# Kotlin/Java crash logs and heap dumps
48+
hs_err_pid*
49+
replay_pid*
50+
*.hprof
51+
52+
# Project-specific ignored JNI directories
1253
app/src/main/jni/llama_cpp/
1354
app/src/main/jni/quickjs/

0 commit comments

Comments
 (0)