mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-10 18:06:01 +02:00
7 lines
344 B
Bash
Executable file
7 lines
344 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# https://docs.flutter.dev/deployment/ios
|
|
# flutter build ipa --release --obfuscate --split-debug-info=./split-debug-info
|
|
# no obfuscate, because no easy to check errors
|
|
cd $(dirname $(dirname $(which flutter)))
|
|
git apply ~/rustdesk/.github/patches/flutter_3.24.4_dropdown_menu_enableFilter.diff
|
|
flutter build ipa --release
|