您的位置:首页 > 移动开发 > Android开发

android 4.4最新官方源码下载

2014-04-24 14:28 501 查看
国内网络,日夜不休花了一个多月才下载成功android标准源码,有些开发同人需要,已上传到网盘,分享给大家

微云地址:

http://url.cn/PkkSzC

百度云盘地址(更新)

http://pan.baidu.com/s/1hqABuc8

(地址如果不能下载、请通知我)

下载时,主要要预留>= 40G的空间



每个文件大小2G





补充:

对于我网盘下载的内容同步出源码的方法如下:

Usinga local mirror

When using several clients, especially in situationswhere bandwidth is scarce, it is better to create a local mirror of the entire servercontent, and to sync clients from that mirror (which requires no network
access).The download for a full mirror is smaller than the download of two clients, whilecontaining more information.

These instructions assume that the mirror iscreated in /usr/local/aosp/mirror. The first step is to create and sync the mirroritself, which uses close to 13GB of network bandwidth and a similar amount of
diskspace. Notice the --mirror flag, which can only be specified when creating a newclient:

$
mkdir -p /usr/local/aosp/mirror

$
cd /usr/local/aosp/mirror

$
repo init-u https://android.googlesource.com/mirror/manifest --mirror

$
repo sync

Once the mirror is synced, new clients can becreated from it. Note that it's important to specify an absolute path:

$
mkdir -p /usr/local/aosp/master

$
cd /usr/local/aosp/master

$
repo init-u /usr/local/aosp/mirror/platform/manifest.git

$
repo sync

Finally, to sync a client against the server,the mirror needs to be synced against the server, then the client against the mirror:

$
cd /usr/local/aosp/mirror

$
repo sync

$
cd /usr/local/aosp/master

$
repo sync

It's possible to store the mirror on a LAN serverand to access it over NFS, SSH or Git. It's also possible to store it on a removabledrive and to pass that drive around between users or between machines.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: