-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(doc_mobile): updated installation instructions and mobile benchmark
- Loading branch information
Showing
3 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
Follow these steps to set up and run the AREA Client Mobile project. | ||
|
||
Installation | ||
============ | ||
|
||
Follow these steps to set up and run the AREA Client Web project. | ||
Prerequisites | ||
---------- | ||
|
||
Before you start, make sure your development environment is correctly configured: | ||
|
||
1. **Flutter**: Install Flutter on your machine. Follow the official instructions at `flutter.dev <https://flutter.dev/docs/get-started/install>`_. | ||
2. **Android Studio or Xcode**: | ||
- For Android, install Android Studio with the necessary tools (Android SDK, AVD). | ||
- For iOS, install Xcode (requires macOS). | ||
3. **Git**: Make sure Git is installed to clone the repository. | ||
4. **Test device**: | ||
- An emulator (iOS or Android) or a connected physical device. | ||
|
||
1. Clone the repository | ||
----------------------- | ||
|
@@ -10,22 +23,17 @@ Follow these steps to set up and run the AREA Client Web project. | |
git clone [email protected]:ASM-Studios/AREA.git | ||
2. Install NPM packages | ||
2. Install Flutter packages | ||
----------------------- | ||
|
||
.. code-block:: sh | ||
cd AREA/client_web | ||
npm install | ||
cd AREA/client_mobile | ||
flutter pub get | ||
3. Run the project | ||
------------------ | ||
|
||
.. code-block:: sh | ||
npm run start | ||
4. Access the application | ||
------------------------- | ||
|
||
To get the .apk, go onto the front-end and navigate to the following URL: https://localhost:8081/client.apk | ||
flutter run |