- Email: [email protected]
- Email: [email protected]
- Email: [email protected]
-
Download the Required SDKs and Tools:
- Flutter SDK 3.0.0: Download Flutter SDK
- Dart SDK 2.17.0 (Optional): Download Dart SDK
- JDK 11.0.14: Download JDK (Oracle Account Required)
-
Install SDKs:
- Flutter and Dart:
- Unzip the Flutter SDK to a directory of your choice, e.g.,
C:/tools/flutter
. - Dart is bundled with Flutter; no need to install separately.
- Add Flutter to the PATH environment variable:
- Open System Properties > Environment Variables.
- Under System Variables, find and edit
Path
. - Add a new entry:
C:\tools\flutter\bin
.
- Unzip the Flutter SDK to a directory of your choice, e.g.,
- Flutter and Dart:
-
Set Up JDK:
- JDK Installation:
- Install JDK 11.0.14 and set up
JAVA_HOME
:- Open System Properties > Environment Variables.
- Click New under System Variables:
- Variable name:
JAVA_HOME
- Variable value:
C:\Program Files\Java\jdk-11.0.14
- Variable name:
- Add
%JAVA_HOME%\bin
to thePath
variable.
- Install JDK 11.0.14 and set up
- JDK Installation:
-
Verify Installation:
- Open Command Prompt and run the following to verify installations:
flutter --version java -version
- Ensure both commands return the correct versions.
- Open Command Prompt and run the following to verify installations:
-
Download the Required SDKs and Tools:
- Flutter SDK 3.0.0: Download Flutter SDK
- Dart SDK 2.17.0 (Optional): Download Dart SDK
- JDK 11.0.14: Download JDK
-
Install SDKs:
- Flutter:
- Unzip the Flutter SDK to
~/development
. - Add Flutter to the PATH by editing your shell profile (
~/.zshrc
or~/.bash_profile
):export PATH="$PATH:$HOME/development/flutter/bin"
- Reload your shell configuration:
source ~/.zshrc # or ~/.bash_profile
- Unzip the Flutter SDK to
- Flutter:
-
Set Up JDK:
- JDK Installation:
- Install JDK 11.0.14 and set
JAVA_HOME
:- Add to your shell profile:
export JAVA_HOME=$(/usr/libexec/java_home -v 11)
- Reload the shell configuration:
source ~/.zshrc # or ~/.bash_profile
- Add to your shell profile:
- Install JDK 11.0.14 and set
- JDK Installation:
-
Verify Installation:
- Open Terminal and run the following to verify installations:
flutter --version java -version
- Ensure both commands return the correct versions.
- Open Terminal and run the following to verify installations:
-
Clone the Repository:
git clone https://github.com/NinjaChunksBackup/eams.git cd eams
-
Install Dependencies:
flutter pub get
-
Run the Application:
- Ensure a connected device via ADB (Android) or an Android Emulator is running.
flutter run
- Solution: Update dependencies:
flutter pub get
- Solution: Uninstall the app from your device/emulator and reinstall using:
flutter run
- Solution: Reset the plugin cache:
flutter clean flutter pub get
- Solution: Clean build and cache:
flutter clean flutter pub cache clean flutter pub get
If the issues persist, please reach out for assistance. 😃
This project is licensed under the MIT License.