zoukankan      html  css  js  c++  java
  • android 4.4最新官方源代码下载

    国内网络,日夜不休花了一个多月才下载成功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.

  • 相关阅读:
    SpringApplication类-1
    post与head注入
    sql_post注入
    渗透测试点线面合集
    渗透入侵溯源
    VMware 安装Tools 失败的问题:VGAuthService 启动失败
    Weblogic wls-wsat XMLDecoder 反序列化漏洞复现(CVE-2017-10271)
    web常见的中间件漏洞及复现
    XX点评H5字体映射
    python控制阿里云服务器开机,关机,重启
  • 原文地址:https://www.cnblogs.com/zhchoutai/p/7065104.html
Copyright © 2011-2022 走看看