-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
106 lines (92 loc) · 2.71 KB
/
Copy path.gitignore
File metadata and controls
106 lines (92 loc) · 2.71 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
# rust stuff
target/
wasm/target
# wasm-bindgen / wasm-pack output that should not land in git
gossip-sdk/src/assets/generated/**/*.map
# coverage
coverage/
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
dev-dist
*.local
*.local.*
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.env*
# Capacitor generated files
# iOS - ignore generated/build artifacts only
ios/App/Pods/
ios/App/App/public/
ios/App/App/capacitor.config.json
ios/App/App.xcodeproj/xcuserdata/
ios/App/App.xcworkspace/xcuserdata/
ios/DerivedData/
ios/App/build/
ios/App/*.ipa
ios/App/*.dSYM.zip
ios/App/fastlane/report.xml
ios/App/fastlane/Preview.html
ios/App/fastlane/test_output/
ios/App/Gemfile.lock
ios/App/plugins/App/public/assets
# secure-storage native artifacts - rebuilt from Rust on demand via the
# "Build secure-storage (Rust)" Xcode pre-build phase (see
# scripts/build-native-ios.sh). Keeping the .a slices and the Swift
# wrapper out of git prevents ~34 MB of static libs from accumulating
# in history on every rebuild. The C-side modulemap+header are tracked
# because Xcode 26 explicit-modules resolves the `-fmodule-map-file=`
# path during CreateBuildDescription, before the pre-build phase
# regenerates them. Combined with the cmp -s no-op overwrite in
# build-native-ios.sh, regen does not touch them when content is stable.
ios/App/SecureStorage.xcframework/**/*.a
ios/App/App/plugins/secureStorage/secureStorage.swift
# Android secure-storage native artifacts — rebuilt from Rust on
# demand via the `:app:buildRustSecureStorage` Gradle task wired
# before `:app:preBuild` (see scripts/build-native-android.sh +
# android/app/build.gradle). Keeping these out of git prevents
# ~8 MB of .so + 1.8k lines of generated Kotlin from accumulating in
# history on every rebuild and guarantees the binary always matches
# the committed Rust source.
android/app/src/main/jniLibs/*/*.so
android/app/src/main/java/uniffi/
# Android build artifacts
android/.gradle/
android/app/build/
android/build/
android/DerivedData/
android/.idea/
android/local.properties
android/captured_assets/
# PWA generated assets
icons/
public/manifest.webmanifest
# Android generated resources (night mode, additional density variants)
android/app/src/main/res/drawable-night/
android/app/src/main/res/drawable-*-night*/
android/app/src/main/res/drawable-*-ldpi/
android/app/src/main/res/drawable-land-ldpi/
android/app/src/main/res/drawable-port-ldpi/
android/app/src/main/res/mipmap-ldpi/
android/app/src/main/res/mipmap-*/ic_launcher_background.png
# Test artifacts
test/**/__screenshots__/
# Git worktrees & Claude Code
.worktrees/
.claude/