Ajouts critiques pour éviter les fuites de secrets : - Android signing : key.properties, *.jks, *.keystore, google-services.json (local.properties déjà ignoré via android/.gitignore) - iOS : xcuserdata/, Pods/, GoogleService-Info.plist, Flutter/Generated.xcconfig - Flutter Version Management : .fvm/ - DevTools : devtools_options.yaml - Build multi-plateforme : windows/linux/macos flutter ephemeral - Obfuscation maps + symbols - Dumps / crashes : *.stackdump, hs_err_pid* - OS artefacts : .DS_Store, Thumbs.db, desktop.ini
131 lines
2.4 KiB
Plaintext
131 lines
2.4 KiB
Plaintext
# Miscellaneous
|
|
*.class
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
.DS_Store
|
|
.atom/
|
|
.buildlog/
|
|
.history
|
|
.svn/
|
|
migrate_working_dir/
|
|
|
|
# IntelliJ related
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# The .vscode folder contains launch configuration and tasks you configure in
|
|
# VS Code which you may wish to be included in version control, so this line
|
|
# is commented out by default.
|
|
#.vscode/
|
|
|
|
# Flutter/Dart/Pub related
|
|
**/doc/api/
|
|
**/ios/Flutter/.last_build_id
|
|
.dart_tool/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
.packages
|
|
.pub-cache/
|
|
.pub/
|
|
/build/
|
|
|
|
# Symbolication related
|
|
app.*.symbols
|
|
|
|
# Obfuscation related
|
|
app.*.map.json
|
|
|
|
# Android Studio will place build artifacts here
|
|
/android/app/debug
|
|
/android/app/profile
|
|
/android/app/release
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Generated files (keep *.g.dart for json_serializable)
|
|
*.freezed.dart
|
|
*.config.dart
|
|
|
|
# Coverage
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Test related
|
|
.test_coverage/
|
|
test/.test_coverage.dart
|
|
|
|
# Analysis
|
|
.analysis_options_user
|
|
|
|
# Local scripts
|
|
*.local.sh
|
|
*.local.bat
|
|
|
|
# ============================================
|
|
# Android signing / secrets — NE JAMAIS COMMIT
|
|
# ============================================
|
|
android/key.properties
|
|
android/app/key.properties
|
|
android/app/upload-keystore.jks
|
|
**/*.jks
|
|
**/*.keystore
|
|
android/app/google-services.json
|
|
android/app/src/*/google-services.json
|
|
|
|
# local.properties contient le chemin SDK local et dev.host (IP LAN)
|
|
android/local.properties
|
|
android/app/local.properties
|
|
|
|
# Gradle cache / NDK
|
|
.gradle/
|
|
**/android/.gradle/
|
|
**/android/app/.cxx/
|
|
**/android/captures/
|
|
|
|
# ============================================
|
|
# iOS — Xcode user data + signing
|
|
# ============================================
|
|
**/ios/Runner.xcworkspace/xcuserdata/
|
|
**/ios/Runner.xcodeproj/xcuserdata/
|
|
**/ios/Runner.xcodeproj/project.xcworkspace/xcuserdata/
|
|
**/ios/Pods/
|
|
**/ios/Podfile.lock.orig
|
|
**/ios/.symlinks/
|
|
**/ios/Flutter/Generated.xcconfig
|
|
**/ios/Flutter/App.framework
|
|
**/ios/Flutter/Flutter.framework
|
|
**/ios/Flutter/Flutter.podspec
|
|
**/ios/Runner/GoogleService-Info.plist
|
|
**/ios/ServiceDefinitions.json
|
|
|
|
# ============================================
|
|
# Flutter outils dev
|
|
# ============================================
|
|
.fvm/
|
|
devtools_options.yaml
|
|
flutter_export_environment.sh
|
|
|
|
# Build outputs multi-plateformes
|
|
/windows/flutter/ephemeral/
|
|
/macos/Flutter/ephemeral/
|
|
/linux/flutter/ephemeral/
|
|
|
|
# Profiling
|
|
*.obfuscation_map.json
|
|
*.symbols
|
|
|
|
# Dumps / crashes
|
|
*.stackdump
|
|
hs_err_pid*
|
|
|
|
# Temp OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|