Skip to content

Commit 251aa83

Browse files
authored
Organize gitignore and ignore local editor caches
Merge PR #37: organize .gitignore and ignore local editor/build cache files.
2 parents b4ca0a6 + c2fd1d7 commit 251aa83

1 file changed

Lines changed: 27 additions & 13 deletions

File tree

.gitignore

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,34 @@
1-
*.iml
2-
.gradle
3-
.idea
4-
.vscode
1+
# OS / filesystem
52
.DS_Store
3+
._*
4+
__MACOSX/
5+
6+
# IDE / editor
7+
*.iml
8+
.idea/
9+
.vscode/
10+
.cursor/
11+
12+
# Gradle / Kotlin build state
13+
.gradle/
14+
.kotlin/
615
build/
7-
/captures
8-
.externalNativeBuild
9-
.cxx
16+
17+
# Android / native build outputs
18+
/captures/
19+
.externalNativeBuild/
20+
.cxx/
21+
jniLibs/
22+
/library/libcore_build/
23+
/libcore/.build/
24+
/.masterdnsvpn-build/
25+
26+
# Local config / generated app artifacts
1027
local.properties
1128
/app/libs/
1229
/app/src/main/assets/sing-box
1330
/service_account_credentials.json
14-
jniLibs/
15-
/library/libcore_build/
16-
.idea/deploymentTargetDropDown.xml
17-
/nkmr
31+
/nkmr/
1832

19-
# submodules
20-
/external
33+
# Submodules / external sources
34+
/external/

0 commit comments

Comments
 (0)