mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00

* fixed errors * removed autofocus from name textfield * fixed equipment profiles find * updated ios screenshots * deleted redundant "light_equipment-profiles-iso-picker" * merged scripts per platform * updated android screenshots * fixed flutter version * Update README.md * skip codesign for PR ipa
11 lines
No EOL
552 B
Bash
11 lines
No EOL
552 B
Bash
simulators_array=("iPhone 13 Pro" "iPad Pro (12.9-inch) (6th generation)")
|
|
open -a Simulator
|
|
for i in "${simulators_array[@]}"; do # https://www.baeldung.com/linux/shell-script-iterate-over-string-list#2-understanding--and--special-indices
|
|
echo "$i"
|
|
xcrun simctl boot "$i"
|
|
sh screenshots/scripts/generate_screenshots.sh "$i"
|
|
done
|
|
killall 'Simulator'
|
|
|
|
dart run screenshots/convert_to_store_screenshots.dart -p ios -d iphone_13_pro -l iphone55inch
|
|
dart run screenshots/convert_to_store_screenshots.dart -p ios -d iphone_13_pro -l iphone65inch |