mirror of
https://github.com/immich-app/immich
synced 2025-06-08 15:57:58 +00:00

* feat(mobile): remote asset & exif sync * add visibility and update constraints * chore: generate drifts * update ids to be strings * clear remote entities on logout * reset sqlite button --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
29 lines
737 B
Makefile
29 lines
737 B
Makefile
.PHONY: build watch create_app_icon create_splash build_release_android pigeon
|
|
|
|
build:
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
# Remove once auto_route updated to 10.1.0
|
|
dart format lib/routing/router.gr.dart
|
|
|
|
pigeon:
|
|
dart run pigeon --input pigeon/native_sync_api.dart
|
|
dart format lib/platform/native_sync_api.g.dart
|
|
|
|
watch:
|
|
dart run build_runner watch --delete-conflicting-outputs
|
|
|
|
create_app_icon:
|
|
flutter pub run flutter_launcher_icons:main
|
|
|
|
create_splash:
|
|
flutter pub run flutter_native_splash:create
|
|
|
|
build_release_android:
|
|
flutter build appbundle
|
|
|
|
migration:
|
|
dart run drift_dev make-migrations
|
|
|
|
translation:
|
|
dart run easy_localization:generate -S ../i18n
|
|
dart format lib/generated/codegen_loader.g.dart
|