General Enhancements #4

Merged
me merged 64 commits from dev into main 2025-06-16 12:33:16 -07:00
5 changed files with 308 additions and 13 deletions
Showing only changes of commit 5a3c700380 - Show all commits

View File

@ -599,13 +599,15 @@
function_update_sdks: |
if [[ "$coding" == "true" ]]; then
function update-sdks {
echo -e "******* Update SDKs *******\n*** Android ***"
echo -e "******* Update SDKs *******\n*** Android - START ***"
yes | sdkmanager --update
yes | sdkmanager --licenses
echo -e "*** Android - END ***"
echo -e "\n*** Flutter ***"
echo -e "\n*** Flutter - START ***"
flutter upgrade
yes | flutter doctor --android-licenses
echo -e "*** Flutter - END ***"
echo -e "\n******* Done! *******"
}