Android Studio for beginners and Installation and setup - Part I

 

Install Android Studio and start your first Android project


if you are new to Android Studio, this tutorial series will get you started. I will briefly introduce the Android development platform, then show you how to download, install, and run the software. After that, we'll spend most of our time actually using Android Studio to develop an animated mobile app:

  • In Part 1, you will start up your first Android project and get to know Android Studio's main window.
  • In Part 2, you will code the app, learning how to use Android Studio to enter source code and resources into the project.
  • In Part 3, we will build and run the app, using both an emulated hardware device and a Motorola Device.
  • In Part 4, I'll show you how to use built-in tools and plugins to debug Android and improve your coding productivity.
Examples in this series are from the most stable version of Android at the time of this writing, Android 10.


Get started with Android Studio

Android Studio is Google's officially supported IDE for developing Android apps. This IDE is based on IntelliJ IDEA, which offers a powerful code editor and developer tools. Android Studio 3.6.1 includes the following features:

  • A flexible Gradle-based build system
  • Instant Run to push changes to your running app without building a new APK
  • Code templates and GitHub integration to help you build common app features and import sample code
  • Extensive testing tools and frameworks
  • Lint tools to help you catch performance, usability, version compatibility, and other problems
  • C++ and NDK support

Hardware Requirement & Download Android Studio

Google provides Android Studio for Windows, Mac OS X, and Linux platforms. You can download Android Studio from the Android Studio homepage, where you will also find the traditional SDKs with Android Studio's command-line tools. Before downloading Android Studio, make sure your platform meets the following requirements:


Windows requirements

  • Microsoft Windows 7/8/10 (32-bit or 64-bit)
  • 3 GB RAM minimum, 8 GB RAM recommended (plus 1 GB for the Android Emulator)
  • 2 GB of available disk space minimum, 4 GB recommended (500 MB for IDE plus 1.5 GB for Android SDK and emulator system image)
  • 1280 x 800 minimum screen resolution

Mac OS requirements

  • Mac OS X 10.10 (Yosemite) or higher, up to 10.13 (High Sierra)
  • 3 GB RAM minimum, 8 GB RAM recommended (plus 1 GB for the Android Emulator)
  • 2 GB of available disk space minimum, 4 GB recommended (500 MB for IDE plus 1.5 GB for Android SDK and emulator system image)
  • 1280 x 800 minimum screen resolution

Linux OS requirements

  • GNOME or KDE desktop. Tested on Ubuntu 14.04 LTS, Trusty Tahr (64-bit distribution capable of running 32-bit applications)
  • 64-bit distribution capable of running 32-bit applications
  • GNU C Library (glibc) 2.19 or later
  • 3 GB RAM minimum, 8 GB RAM recommended (plus 1 GB for the Android Emulator)
  • 2 GB of available disk space minimum, 4 GB recommended (500 MB for IDE plus 1.5 GB for Android SDK and emulator system image)
  • 1280 x 800 minimum screen resolution
 We will see how to install an android studio on windows 64-bit machine in the next part of the Android studio installation series.

Thanks for reading and your paisson 


     

Comments