Difference between revisions of "OS: Android - Android Studio"

From OnnoWiki
Jump to navigation Jump to search
Line 47: Line 47:
 
==Instalasi Android Studio==
 
==Instalasi Android Studio==
  
 +
Lakukan
  
 +
* Download Android Studio dari
 +
 +
https://dl.google.com/dl/android/studio/ide-zips/1.1.0/android-studio-ide-135.1740770-linux.zip
 +
 +
* Copy & Extrak
 +
 +
sudo su
 +
cp android-studio-ide-135.1740770-linux.zip  /usr/local/src/
 +
cd /usr/local/src/
 +
unzip android-studio-ide-135.1740770-linux.zip
 +
 +
* Menjalankan android studio
 +
 +
cd /usr/local/src/android-studio/bin/
 +
./studio.sh
  
  
    Linux:
 
        Unpack the downloaded Tar file, android-studio-bundle-<version>.tgz, into an appropriate location for your applications.
 
        To launch Android Studio, navigate to the android-studio/bin/ directory in a terminal and execute studio.sh.
 
  
 
         You may want to add android-studio/bin/ to your PATH environmental variable so that you can start Android Studio from any directory.
 
         You may want to add android-studio/bin/ to your PATH environmental variable so that you can start Android Studio from any directory.
Line 58: Line 71:
 
That's it! You're ready to start developing apps with Android Studio.
 
That's it! You're ready to start developing apps with Android Studio.
  
 
For a list of some known issues, see tools.android.com/knownissues.
 
Starting a Project
 
  
 
When you launch Android Studio for the first time, you'll see a Welcome screen that offers several ways to get started:
 
When you launch Android Studio for the first time, you'll see a Welcome screen that offers several ways to get started:
Line 68: Line 78:
 
     This starts the New Project wizard, which helps you set up a project using an app template.
 
     This starts the New Project wizard, which helps you set up a project using an app template.
 
     To import an existing Android app project, click Import Project.
 
     To import an existing Android app project, click Import Project.
 
 
  
 
==Referensi==
 
==Referensi==

Revision as of 08:59, 21 February 2015

Android Studio

  • Android Studio IDE
  • Android SDK tools
  • Android 5.0 (Lollipop) Platform
  • Android 5.0 emulator system image dengan Google API

Kebutuhan System

Windows

  • Microsoft® Windows® 8/7/Vista/2003 (32 or 64-bit)
  • 2 GB RAM minimum, 4 GB RAM recommended
  • 400 MB hard disk space
  • At least 1 GB for Android SDK, emulator system images, and caches
  • 1280 x 800 minimum screen resolution
  • Java Development Kit (JDK) 7
  • Optional for accelerated emulator: Intel® processor with support for Intel® VT-x, Intel® EM64T (Intel® 64), and Execute Disable (XD) Bit functionality

Mac OS X

  • Mac® OS X® 10.8.5 or higher, up to 10.9 (Mavericks)
  • 2 GB RAM minimum, 4 GB RAM recommended
  • 400 MB hard disk space
  • At least 1 GB for Android SDK, emulator system images, and caches
  • 1280 x 800 minimum screen resolution
  • Java Runtime Environment (JRE) 6
  • Java Development Kit (JDK) 7
  • Optional for accelerated emulator: Intel® processor with support for Intel® VT-x, Intel® EM64T (Intel® 64), and Execute Disable (XD) Bit functionality

Di Mac OS, menjalankan Android Studio dengan Java Runtime Environment (JRE) 6 untuk mengoptimasi font rendering. Kita dapat mengkonfigurasi project kita untuk menggunakan Java Development Kit (JDK) 6 or JDK 7.

Linux

  • GNOME or KDE desktop
  • GNU C Library (glibc) 2.15 or later
  • 2 GB RAM minimum, 4 GB RAM recommended
  • 400 MB hard disk space
  • At least 1 GB for Android SDK, emulator system images, and caches
  • 1280 x 800 minimum screen resolution
  • Oracle® Java Development Kit (JDK) 7

Di test di Ubuntu 14.04, Trusty Tahr (distribusi 64-bit yang mampu menjalankan aplikasi 32-bit).


Instalasi Android Studio

Lakukan

  • Download Android Studio dari
https://dl.google.com/dl/android/studio/ide-zips/1.1.0/android-studio-ide-135.1740770-linux.zip
  • Copy & Extrak
sudo su
cp android-studio-ide-135.1740770-linux.zip  /usr/local/src/
cd /usr/local/src/
unzip android-studio-ide-135.1740770-linux.zip 
  • Menjalankan android studio
cd /usr/local/src/android-studio/bin/
./studio.sh


       You may want to add android-studio/bin/ to your PATH environmental variable so that you can start Android Studio from any directory.

That's it! You're ready to start developing apps with Android Studio.


When you launch Android Studio for the first time, you'll see a Welcome screen that offers several ways to get started:

   To start building a new app, click New Project.
   This starts the New Project wizard, which helps you set up a project using an app template.
   To import an existing Android app project, click Import Project.

Referensi

Pranala Menarik