2024-06-26 21:31:55 +02:00
|
|
|
.PHONY: build watch create_app_icon create_splash build_release_android
|
|
|
|
|
2022-02-03 18:06:44 +02:00
|
|
|
build:
|
2023-08-10 04:01:16 +02:00
|
|
|
dart run build_runner build --delete-conflicting-outputs
|
2022-02-03 18:06:44 +02:00
|
|
|
|
|
|
|
watch:
|
2023-08-10 04:01:16 +02:00
|
|
|
dart run build_runner watch --delete-conflicting-outputs
|
2022-02-04 18:41:51 +02:00
|
|
|
|
|
|
|
create_app_icon:
|
2022-03-14 05:10:07 +02:00
|
|
|
flutter pub run flutter_launcher_icons:main
|
|
|
|
|
2023-02-06 08:41:07 +02:00
|
|
|
create_splash:
|
|
|
|
flutter pub run flutter_native_splash:create
|
|
|
|
|
2022-03-14 05:10:07 +02:00
|
|
|
build_release_android:
|
2023-02-06 08:41:07 +02:00
|
|
|
flutter build appbundle
|