Linux 下常用Android开发软件

开发

Android Studio

IntelliJ IDEA

Jetbrains 官网下载
lanyus 大神的破解方案
Ubuntu 18.04修改hosts方法 修改hosts文件

sudo gedit /etc/hosts
//追加信息,并保存
sudo /etc/init.d/networking restart

项目协作

Git

如何在Ubuntu 18.04上安装Git与入门教程

apt-get update -y
apt-get upgrade -y

apt install git
git --version
//配置Git信息
git config --global user.name "linuxidc"
git config --global user.email "[email protected]"
//验证配置信息
git config --list

发布了593 篇原创文章 · 获赞 57 · 访问量 33万+

猜你喜欢

转载自blog.csdn.net/ThePromonkeyOf_HeLuo/article/details/92834888