项目作者: KalifiaBillal

项目描述 :
Android Delivery Service App
高级语言: Java
项目地址: git://github.com/KalifiaBillal/Andoid-App-Yummy.git
创建时间: 2020-04-22T05:15:38Z
项目社区:https://github.com/KalifiaBillal/Andoid-App-Yummy

开源协议:

下载


Android Studio

Yummy !

GitHub followers GitHub repo size Visual Studio App Center (Minimum) OS Version GitHub contributors GitHub commit activity GitHub top language

Repository Titles

How to Install Android Studio on Ubuntu 18.04

Arduino project

How to Install Android Studio on Ubuntu 18.04

Android Studio

Android Studio is a full-featured cross-platform IDE that helps you build applications on every type of Android device. It is based on JetBrains’ IntelliJ IDEA and includes everything you need for Android development.

Android Studio build system is powered by Gradle allowing you to create multiple build variants for different devices from a single project.

This tutorial explains how to install Android Studio on Ubuntu 18.04. The same instructions apply for Ubuntu 16.04 and any Ubuntu-based distribution, including Kubuntu, Linux Mint, and Elementary OS.

Prerequisites

You’ll need to be logged in as a user with sudo access to be able to install packages on your Ubuntu system.

Installing Java OpenJDK

Android Studio requires OpenJDK version 8 or above to be installed to your system.
We’ll install OpenJDK 8. The installation is pretty simple, start by updating the package index:

Installing Java OpenJDK

Android Studio requires OpenJDK version 8 or above to be installed to your system.
We’ll install OpenJDK 8. The installation is pretty simple, start by updating the package index:

  1. // Run
  2. sudo apt update

Install the OpenJDK 8 package by typing:

  1. // Run
  2. sudo apt install openjdk-8-jdk

Verify the installation by typing the following command which will print the Java version:

  1. // Run
  2. java -version

The output should look something like this:

  1. // The output
  2. openjdk version "1.8.0_191"
  3. OpenJDK Runtime Environment (build 1.8.0_191-8u191-b12-2ubuntu0.18.04.1-b12)
  4. OpenJDK 64-Bit Server VM (build 25.191-b12, mixed mode)

Installing Android Studio

At the time of writing this article, the latest stable version of Android Studio is version 3.3.1.0. The easiest way is to install Android Studio on Ubuntu 18.04 is by using the snappy packaging system.

To download and install the Android Studio snap package, open your terminal using the Ctrl+Alt+T keyboard shortcut and type:

  1. // run
  2. sudo snap install android-studio --classic

Once the installation is complete, you will see the following output:

  1. // The output
  2. android-studio 3.3.1.0 from Snapcrafters installed

That’s it. Android Studio has been installed on your Ubuntu desktop.