Skip to content

Instantly share code, notes, and snippets.

@carloswm85
Last active June 3, 2024 20:26
Show Gist options
  • Save carloswm85/c9c3be76c86144650a8f26c9e92b32f3 to your computer and use it in GitHub Desktop.
Save carloswm85/c9c3be76c86144650a8f26c9e92b32f3 to your computer and use it in GitHub Desktop.

Installation Insctructions

Use cmd elevated.

INSTALLATION

  1. VSCode - https://code.visualstudio.com/download
  2. Android Studio - https://developer.android.com/studio
    • Required by Flutter when developing for Android:
    • Android SDK
    • Android SDK Command-line Tools
    • Android SDK Build-Tools
  3. Flutter SDK
    • Unzip and uninstall in C:/stable/flutter
    • Set Environment Variable > User Variable: Path > Append: flutter\bin
  4. You may need:
  5. Run the commands:
    • flutter doctor - Installation verification.
    • flutter doctor --android-licenses - Accept remaining licences.
  6. OPTIONAL:

Additional Instructions

INSTRUCTIONS

How Many GB Do I Need?


Environment Variables

It may be necessary to apply these when behind a proxy server.

System Properties > Environment Variables > User variables > Add values...

Variable Value
HTTP_PROXY http://10.1.33.254:80
HTTPS_PROXY https://10.1.33.254:80
NO_PROXY localhost,127.0.0.1,::1,LOCALHOST

Configured values at flutter doctor -v

image

cmd

Command Description
netsh winhttp reset proxy Reset
set http_proxy='http://10.1.33.254:80' -
set https_proxy='https://10.1.33.254:80' -
set no_proxy='localhost,127.0.0.1,::1,LOCALHOST' -

SOME KNOWN ISSUES

Proxy

HAXM

Other


iOS Development

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment