Structure Flutter iOS/Android (lib/ organisé en couches domain, application, infrastructure, presentation), intégration Drift pour la persistance locale (sqlite3_flutter_libs), configuration des plateformes android/ et ios/. Build APK debug validé. Ajuste le .gitignore pour ignorer l'état d'exécution IdeA (.ideai/permissions.json) au même titre que le reste du runtime. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
97 lines
1.5 KiB
Plaintext
97 lines
1.5 KiB
Plaintext
# Miscellaneous
|
|
*.class
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
.DS_Store
|
|
.atom/
|
|
.buildlog/
|
|
.history
|
|
.svn/
|
|
migrate_working_dir/
|
|
|
|
# IntelliJ related
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# Visual Studio Code related
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Flutter/Dart/Pub related
|
|
**/doc/api/
|
|
.dart_tool/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
.pub-cache/
|
|
.pub/
|
|
/build/
|
|
**/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
|
|
android/.gradle/
|
|
android/local.properties
|
|
android/**/gradle-wrapper.jar
|
|
android/key.properties
|
|
*.jks
|
|
*.keystore
|
|
|
|
# iOS/Xcode related
|
|
ios/Pods/
|
|
ios/.symlinks/
|
|
ios/Flutter/Flutter.framework
|
|
ios/Flutter/Flutter.podspec
|
|
ios/Flutter/App.framework
|
|
ios/Flutter/Generated.xcconfig
|
|
ios/Flutter/ephemeral/
|
|
ios/Flutter/app.flx
|
|
ios/Flutter/app.zip
|
|
ios/Flutter/flutter_assets/
|
|
ios/Flutter/flutter_export_environment.sh
|
|
ios/ServiceDefinitions.json
|
|
ios/Runner/GeneratedPluginRegistrant.*
|
|
**/xcuserdata/
|
|
**/*.pbxuser
|
|
**/*.mode1v3
|
|
**/*.mode2v3
|
|
**/*.perspectivev3
|
|
*.moved-aside
|
|
DerivedData/
|
|
*.hmap
|
|
*.ipa
|
|
*.dSYM.zip
|
|
*.dSYM
|
|
|
|
# Generated files
|
|
**/*.g.dart
|
|
**/*.freezed.dart
|
|
**/*.gr.dart
|
|
|
|
# Coverage
|
|
coverage/
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IdeA orchestration — état d'exécution transitoire (pas du code applicatif)
|
|
.ideai/run/
|
|
.ideai/conversations/
|
|
.ideai/requests/
|
|
.ideai/background-tasks/
|
|
.ideai/live-state.json
|
|
.ideai/layouts.json
|
|
.ideai/permissions.json
|