一. 基本环境搭建

1.官网http://developer.android.com/sdk/index.html ,下载adt-bundle-linux-x86_64-20130729.zip

2. 解压sdk

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ unzip adt-bundle-linux-x86_64-20130729.zip
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ ls -al
总用量 1098596
drwxrwxr-x 6 bixiaopeng bixiaopeng 4096 8月 21 11:48 .
drwxr-xr-x 26 bixiaopeng bixiaopeng 4096 8月 21 13:06 ..
drwxr-x--- 4 bixiaopeng bixiaopeng 4096 7月 29 15:23 adt-bundle-linux-x86_64-20130729
-rw-rw-r-- 1 bixiaopeng bixiaopeng 458006784 8月 20 20:59 adt-bundle-linux-x86_64-20130729.zip

3.配置环境变量

vim ~/.bashrc  把下面这些环境变量加进去
export ANDROID_SDK=/home/bixiaopeng/soft/adt-bundle-linux-x86_64-20130729/sdkexport PATH=$ANDROID_SDK/platform-tools:$ANDROID_SDK/tools:$PATH

4.测试一下

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ adb shell
error: device not found

返回以上信息就表明你配置成功了

二. 使用android提供的eclipse

使用android提供的绑定ADT的eclipse开发,这样就不用在eclipse里安装ADT插件了

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/adt-bundle-linux-x86_64-20130729$ ls
eclipse sdk

三. 使用Android Studio

1. 下载地址:http://developer.android.com/sdk/installing/studio.html
我下载的是: Android Studio v0.2.xfor Linux

2. 下载下来后怎么样打开Android Studio呢?
#  到android-studio/bin目录下执行studio.sh

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ cd android-studio/bin
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ ls -al
总用量 128
drwxr-x--- 2 bixiaopeng bixiaopeng 4096 8月 21 13:24 .
drwxr-x--- 7 bixiaopeng bixiaopeng 4096 7月 12 00:27 ..
-rw-r----- 1 bixiaopeng bixiaopeng 136 7月 11 23:48 appletviewer.policy
-rwxr-x--- 1 bixiaopeng bixiaopeng 22791 7月 11 23:48 fsnotifier
-rwxr-x--- 1 bixiaopeng bixiaopeng 29155 7月 11 23:48 fsnotifier64
-rw-r----- 1 bixiaopeng bixiaopeng 4176 7月 11 23:48 idea.png
-rw-r----- 1 bixiaopeng bixiaopeng 6913 7月 11 23:48 idea.properties
-rwxr-x--- 1 bixiaopeng bixiaopeng 281 7月 11 23:48 inspect.sh
-rw-r----- 1 bixiaopeng bixiaopeng 8531 7月 11 23:48 libbreakgen64.so
-rw-r----- 1 bixiaopeng bixiaopeng 6807 7月 11 23:48 libbreakgen.so
-rw-rw-r-- 1 bixiaopeng bixiaopeng 0 8月 21 13:24 libpeerconnection.log
-rw-r----- 1 bixiaopeng bixiaopeng 2275 7月 11 23:48 log.xml
-rw-r----- 1 bixiaopeng bixiaopeng 282 7月 11 23:48 studio64.vmoptions
-rwxr-x--- 1 bixiaopeng bixiaopeng 6505 7月 11 23:48 studio.sh
-rw-r----- 1 bixiaopeng bixiaopeng 290 7月 11 23:48 studio.vmoptions
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ sh studio.sh

提示:JDK一定要用1.6的,第一次打开的时候会让你指定JDK1.6的路径

3.配置Android Studio环境变量

#查看路径
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ pwd
/home/bixiaopeng/soft/android-studio/bin
#编辑.bashrc
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ vim ~/.bashrc
#在底部增加下面的配置
export ANDROID_STUDIO=/home/bixiaopeng/soft/android-studio/bin
export PATH=${ANDROID_STUDIO}:$PATH
#让配置立即生效
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~$ source ~/.bashrc
#在任意路径下都可以直接打开studio
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ cd ~
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~$ studio.sh

【玩转Ubuntu】02. Ubuntu上搭建Android开发环境的更多相关文章

  1. 如何在Windows上搭建Android开发环境

    Android开发越来越火,许多小伙伴们纷纷学习Android开发,学习Android开发首要任务是搭建Android开发环境,由于大家 主要实在Windows 上开发Android,下面就详细给大家 ...

  2. 【转】在MyEclipse 8.6上搭建Android开发环境

    内容导航 第 1 页:基本环境准备 第 2 页:下载Android SDK 第 3 页:配置SDK环境变量 第 4 页:给MyEclipse安装ADT插件 第 5 页:配置MyEclipse 第 6 ...

  3. Windows上搭建android开发环境

    在搭建android开发环境时需要四部分内容,框架如下 其中Java SDK和Eclipse在java4android中有过介绍,重点介绍ADT和Android SDK的安装. 安装Android S ...

  4. ubuntu14.04上搭建android开发环境

    这几天心血来潮,想在ubuntu上写写android软件.所以就上网找些资料在ubuntu上搭建android环境.结果要么时不完整的,要么就是过时的. 所以我把我搭建android环境的过程写下了, ...

  5. Ubuntu 14.04下搭建 Android 开发环境(1) -JDK安装

    1.下载最新的jdk安装,地址:http://www.oracle.com/technetwork/java/javase/downloads/ 2.解压jdk-8u20-linux-x64.gz,我 ...

  6. 【转】在NetBeans上搭建Android SDK环境

    本文将介绍在NetBeans 6.8上搭建Android SDK环境,目前Android在Netbeans上进行开发需要借助nbandroid的平台插件. 我们刚刚介绍过<MyEclipse上搭 ...

  7. 在Eclipse下搭建Android开发环境教程

    我们昨天向各位介绍了<在NetBeans上搭建Android SDK环境>,前不久也介绍过<在MyEclipse 8.6上搭建Android开发环境>, 都受到了读者的欢迎.但 ...

  8. 【转】在Eclipse下搭建Android开发环境教程

    本文将全程演示Android开发环境的搭建过程,无需配置环境变量.所有软件都是写该文章时最新版本,希望大家喜欢.   一 相关下载 三 Eclipse配置 (1)Java JDK下载 1 安装andr ...

  9. OK335xS Ubuntu 12.04.1 版本 Android 开发环境搭建

    /******************************************************************************************** * OK33 ...

随机推荐

  1. 读<<代码整洁之道>>的感想

    花去了近一周的时间浏览一下这本书.总体感觉这本书写得不错. 我发现自己以前写的代码时多么的糟糕.有很多改进之处... 同时我也发现写出优秀的代码不易.优秀的代码不仅仅易读,并且易修改,易维护,程序易维 ...

  2. [转]Geoserver实现WFS操作

    From:http://liushaobo2005.blog.163.com/blog/static/253056702011541462372/ wfs是OGC的标准规范,主要用于提供对矢量地理数据 ...

  3. 蓝桥杯之JAM的计数法

    题目描述 Jam是个喜欢标新立异的科学怪人.他不使用阿拉伯数字计数,而是使用小写英文字母计数,他觉得这样做,会使世界更加丰富多彩.在他的计数法中,每个数字的位数都是相同的(使用相同个数的字母),英文字 ...

  4. c++崩溃错误2

    使用了内联函数: 在头文件中声明和定义内联函数是正确的 但是在头文件中声明内联函数,而在.cpp文件中定义了内联函数会导致崩溃的 .h class stu{ inline void str(): } ...

  5. OC基础1:一些基本概念

    "OC基础"这个分类的文章是我在自学Stephen G.Kochan的<Objective-C程序设计第6版>过程中的笔记. 1.关于类方法和实例方法: (1).类方法 ...

  6. Knots(找规律)

    Knots Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Subm ...

  7. Android 四大组件之Activity生命周期

    写这篇博文之前,已经对android有一定的了解和认识.这篇博文主要讲述android的Activity的生命周期,这是android开发者必须掌握的知识.android的Activity组件拥有7个 ...

  8. iOS开发那些事儿(三)JsonKit解析原理

    json_parse_it :开始解析,字符串指针从头到尾循环 jk_parse_next_token:获取下个字符的type和length 大部分分隔符长度都是固定1 jk_parse_string ...

  9. 在eclipse上提交任务到集群执行

    win7下eclipse远程开发hadoop程序,分为两种: (1)运行[Run As] Java Application, 打包程序为jar,上传集群执行(这里不做解释) (2)运行[Run As] ...

  10. Scala入门指南与建议

    最近在学习使用Scala语言做项目,感觉这门语言实在是太优美了!作为一个本科数学.研究生机器学习专业的混合人才(哈哈),这门语言真的是满足了普通计算机编程(告诉计算机怎么做)和函数式编程(告诉计算机做 ...