Top

TeamWise APP Documentation

Chat, collaborate, and create teams effortlessly with Teamwise

Installation Android Studio


  1. This guide provides installation instructions for Android Studio on Windows, macOS, and Linux with helpful video links for each platform.

Requirements:

Ensure your system satisfies the basic requirements:

  1. Windows: Android Studio for Windows
  2. MacOs: Android Studio for MacOs
  3. Linux: Android Studio for Linux
 

Windows:

  1. 1. Download the Installer:
    1. Download the installer from Android Studio for Windows.
    2. Run the installer android-studio-ide-<version>-windows.exe.
  1. 2. Setup Instructions:
    1. Choose the installation location.
    2. elect components like the Android Virtual Device (AVD) during the installation.
  1. 3. Finish the Installation and launch Android Studio.

macOS:

  1. 1. Download the .dmg file::
    1. Download from Android Studio for macOS.
  1. 2. Install:
    1. Double-click the downloaded .dmg file to mount it.
    2. Drag the Android Studio application to your Applications folder.
  1. 3. Open Android Studio from the Applications folder.

Linux:

  1. 1. Download the .tar.gz file:
    1. Download from Android Studio for Linux.
  2. 2. Extract and Install:
    1. Extract the downloaded file to your preferred directory.
    2. Run the following commands in your terminal:
    sudo unzip android-studio-ide--linux.zip -d /opt 
    sudo ln -s /opt/android-studio/bin/studio.sh /usr/local/bin/studio 
  1. 3. Launch Android Studio:
    1. Run the following commands in your terminal:

Notes:
  1. Open Android Studio after installation.
  2. The setup wizard will guide you to download necessary SDK components.
  3. Follow the wizard’s instructions to complete the setup.

  1. Install Plugins:
    1. Go to Preferences > Plugins in Android Studio.
    2. Search for Flutter and click Install.
    3. Search for Dart and click Install.

Tips:

  1. Open AVD Manager in Android Studio.
  2. Create a New Virtual Device:
    1. Select the device configuration (e.g., Pixel 4).
    2. Select the system image and finish the setup.
  3. Launch the Emulator to start testing your app.
  • Verify the Installation


    1. Download the Flutter SDK:
      1. Go to the Flutter installation page and download the latest stable release for your operating system.
    2. Extract Flutter:
      1. Windows: Extract the flutter folder to C:\src\flutter.
      2. macOS/Linux: Extract the Flutter SDK to ~/development/flutter or another preferred directory.
    3. Add Flutter to PATH:
      1. Windows: Add C:\src\flutter\bin to your system PATH environment variable.
      2. macOS/Linux: Open your terminal and add the following line to your .bash_profile (macOS) or .zshrc (Linux):
        export PATH="$PATH:`/flutter/bin"
      3. Run the following command to apply the changes:
        source ~/.bash_profile
        source ~/.zshrc  
    4. Run flutter doctor to check if everything is set up correctly.

    Notes:
    1. Run Android Studio.
    2. Create a New Flutter Project:
      1. Go to File > New > New Flutter Project.
      2. Follow the prompts to set up your project.
    3. Run Your Project to ensure everything is working correctly.