-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.gitignore
More file actions
106 lines (94 loc) · 3.28 KB
/
.gitignore
File metadata and controls
106 lines (94 loc) · 3.28 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
# ───────────────────────────────
# Flutter / Dart
# ───────────────────────────────
.dart_tool/
.metadata
.packages
.melange/
# Generated plugin registrant (Flutter <3.16)
.flutter-plugins
.flutter-plugins-dependencies
# Build outputs
build/
# Opaque pub cache files; keep pubspec.lock in VCS
.pub-cache/
# ───────────────────────────────
# Android
# ───────────────────────────────
android/.gradle/
android/.idea/
android/local.properties
android/app/debug/
android/app/profile/
android/app/release/
*.iml
# Generated icons and splash screens (exclude manually maintained files)
android/app/src/main/res/drawable*/
android/app/src/main/res/mipmap*/
!android/app/src/main/res/values*/
# ───────────────────────────────
# iOS / macOS
# ───────────────────────────────
ios/Flutter/App.framework
ios/Flutter/Flutter.framework
ios/Pods/
ios/.generated/
ios/.idea/
ios/Runner.xcworkspace/
macos/Pods/
macos/.generated/
macos/Flutter/ephemeral/
# CocoaPods – commit Podfile.lock if you need reproducible iOS builds
Podfile.lock
Pods/
# Generated icons and splash screens
ios/Runner/Assets.xcassets/AppIcon.appiconset/*
ios/Runner/Assets.xcassets/LaunchImage.imageset/*
ios/Runner/Assets.xcassets/LaunchBackground.imageset/*
!ios/Runner/Assets.xcassets/AppIcon.appiconset/.gitkeep
!ios/Runner/Assets.xcassets/LaunchImage.imageset/.gitkeep
!ios/Runner/Assets.xcassets/LaunchBackground.imageset/.gitkeep
# Xcode user data & build artifacts
*.xcworkspace
*.xcuserstate
*.xcuserdatad
DerivedData/
# ───────────────────────────────
# Linux / Windows / Fuchsia (optional)
# ───────────────────────────────
linux/build/
windows/build/
fuchsia/build/
# ───────────────────────────────
# Web (optional)
# ───────────────────────────────
web/build/
# ───────────────────────────────
# IDE / Editor / AI Tool Settings
# ───────────────────────────────
.idea/
.idea/**/workspace.xml
.idea/**/tasks.xml
.vscode/
.claude/settings.local.json
# Swap files
*.swp
*.swo
# ───────────────────────────────
# Misc / System
# ───────────────────────────────
.DS_Store
Thumbs.db
*.orig # merge conflict backups
# Secrets or signing keys (add if used)
*.keystore
.env
# Local OSM client ID configuration (contains secrets)
build_keys.conf
# ───────────────────────────────
# For now - not targeting these
# ───────────────────────────────
linux/
macos/
web/
windows/