-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (66 loc) · 1.55 KB
/
.gitignore
File metadata and controls
80 lines (66 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
# ============================================
# Fialka — .gitignore
# ============================================
# --- Gradle ---
.gradle/
build/
**/build/
# --- AI / Copilot (local only, never push) ---
.github/copilot-instructions.md
# Workflows ARE tracked (GitHub Actions)
# .github/workflows/ is NOT ignored
# --- IDE / Editor ---
.idea/
.vscode/
*.iml
*.iws
*.ipr
local.properties
.DS_Store
Thumbs.db
# --- Monero local build artifacts (NEVER push — gigabytes of NDK/sources) ---
.monero-build/
# Only ignore the top-level app/jni/ NDK build dir, NOT wallet/jni/ Kotlin sources
app/jni/
# --- Monero cross-compiled static libs (Docker output — regenerate with make) ---
# Keep: Dockerfiles, Makefile, build scripts
# Ignore: compiled output (hundreds of .a files, wallet2_api.h)
external-libs/arm64-v8a/
external-libs/x86_64/
external-libs/include/
# --- CMake build cache (Android Studio generated) ---
app/.cxx/
# --- Android ---
*.apk
*.aab
*.ap_
*.dex
*.class
# --- Firebase secrets (NEVER commit!) ---
app/google-services.json
# --- V2 CDC & tracking (sensitive — never push) ---
SecureChat_V2_CDC_Final.md
Fialka_V2_CDC_Final.md
Fialka_V2_CDC_Final.docx
*_CDC_Final.*
V2_PROGRESS.md
fialka-relay/
# --- Signing ---
*.jks
*.keystore
fialka-release.p12
*p12
signing.properties
# --- Logs ---
*.log
# --- Native binaries (built from Fialka-Core submodule — never commit) ---
# Run Fialka-Core/build_android.sh to regenerate locally
app/src/main/jniLibs/**/*.so
# --- OS ---
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Desktop.ini