-
Notifications
You must be signed in to change notification settings - Fork 4
/
makefile
40 lines (28 loc) · 989 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
xcode:
open ios/Runner.xcworkspace
built_value_build:
flutter packages pub run build_runner build --delete-conflicting-outputs
built_value_watch:
flutter packages pub run build_runner watch --delete-conflicting-outputs
# iOS
mock_ios:
flutter build ios -t lib/main_mock.dart
prod_ios:
flutter build ios -t lib/main_prod.dart
install_ios_dev:
flutter build ios -t lib/main_dev.dart && flutter install -d 00008020-001454EC14D2002E
install_ios_mock:
make mock_ios && flutter install -d 00008020-001454EC14D2002E
install_ios_prod:
make prod_ios && flutter install -d 00008020-001454EC14D2002E
# Android
mock_android:
flutter build apk -t lib/main_mock.dart
prod_android:
flutter build apk -t lib/main_prod.dart
install_android_dev:
flutter build apk -t lib/main_dev.dart && flutter install -d 2a71eab236027ece
install_android_mock:
make mock_android && flutter install -d 2a71eab236027ece
install_android_prod:
make prod_android && flutter install -d 2a71eab236027ece