Commit Graph

3 Commits

Author SHA1 Message Date
f140d7a014 fix(android): apply Kotlin plugin to file_picker on AGP 9
file_picker's android/build.gradle guards `apply plugin:
'org.jetbrains.kotlin.android'` behind a runtime AGP-version check that
is false on this project's AGP 9 (it assumes AGP's built-in Kotlin
support is active instead). Flutter's own FlutterPluginUtils only
scans the file's text for that apply statement to decide whether to
auto-apply Kotlin itself, so it is fooled by the same guarded line and
skips applying it too. With android.builtInKotlin=false (needed for
other plugins like audioplayers_android), no Kotlin plugin ever runs
for file_picker, so its Kotlin sources -- including FilePickerPlugin --
never compile, breaking `flutter build apk --release` with:

  cannot find symbol: class FilePickerPlugin

Force-apply org.jetbrains.kotlin.android for the file_picker subproject
once AGP's library plugin is present, and pin its Kotlin compile
jvmTarget to 17 (file_picker's own jvmTarget setup is behind the same
dead guard, so it would otherwise default to the running JDK's target
and conflict with the javac target). Verified with a full
`flutter build apk --release`.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-22 18:30:18 +02:00
9974e5b7ea feat(assets): icône d'application Android et iOS (ticket #19)
Génère les icônes via flutter_launcher_icons à partir des visuels
icon_full.png / icon_foreground.png : mipmap Android classiques,
icône adaptive (drawable-*/ic_launcher_foreground.png,
mipmap-anydpi-v26/ic_launcher.xml, values/colors.xml) et l'ensemble
AppIcon iOS. Configuration flutter_launcher_icons ajoutée à
pubspec.yaml. flutter analyze propre, 27/27 tests verts, build APK
debug validé, icônes vérifiées visuellement.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-17 23:53:04 +02:00
085dabc6e2 feat(app): scaffolding initial du projet Flutter GameTime
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>
2026-07-17 18:02:20 +02:00