From d18b32e21f6e685ef0af77a89b6885b7c3e7c8a1 Mon Sep 17 00:00:00 2001 From: julian Date: Thu, 9 Mar 2023 09:53:59 -0600 Subject: [PATCH] update linux setup script and readme to use flutter 3.7 --- README.md | 6 +++--- scripts/setup.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9d0f6ff6d..b1fd68363 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,10 @@ Highlights include: - The only OS supported for building is Ubuntu 20.04 - A machine with at least 100 GB of Storage -The following prerequisities can be installed with the setup script `scripts/setup.sh` or manually as described below: +The following prerequisites can be installed with the setup script `scripts/setup.sh` or manually as described below: -- Flutter 3.3.4 [(install manually or with git, do not install with snap)](https://docs.flutter.dev/get-started/install) -- Dart SDK Requirement (>=2.17.0, up until <3.0.0) +- Flutter 3.7.6 [(install manually or with git, do not install with snap)](https://docs.flutter.dev/get-started/install) +- Dart SDK Requirement (>=2.19.0, up until <3.0.0) (normally included with a flutter install) - Android setup ([Android Studio](https://developer.android.com/studio) and subsequent dependencies) ### Scripted setup diff --git a/scripts/setup.sh b/scripts/setup.sh index d9c716546..8be59f8c4 100644 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -12,7 +12,7 @@ sudo apt install -y unzip pkg-config clang cmake ninja-build libgtk-3-dev cd $DEVELOPMENT git clone https://github.com/flutter/flutter.git cd flutter -git checkout 3.3.4 +git checkout 3.7.6 export FLUTTER_DIR=$(pwd)/bin echo 'export PATH="$PATH:'${FLUTTER_DIR}'"' >> ~/.bashrc source ~/.bashrc