...

/

Setup the Development Environment

Setup the Development Environment

Learn to install Android Studio on your operating system and configure it by manipulating settings.

Introduction

Unlike iOS, which can only be developed on macOS, Android development can be done on either Windows, Mac OS, or Linux. Moreover, all the tools are freely available for download. This lesson will walk you through setting up your device for Android app development.

Installing Android Studio

Android Studio is the official IDE for Android app development and provides a host of features. Some of the noteworthy ones are:

  • A Gradle-based build system that can be infinitely customized to get improved build times and can automate mandated tasks.
  • A wide variety of emulators, allowing us to test the application on different OS versions and resolutions.
  • GitHub integration to easily leverage version-control capabilities.
  • A host of
...