{{indexmenu_n>10}}
====== Edge-2L Download Android Source Code ======
===== Introduction =====
This document mainly introduces how to download the Android source code of Edge-2L.
===== Download from github =====
1. Create an empty directory to hold your working files.
```shell
$ mkdir -p WORKING_DIRECTORY
$ cd WORKING_DIRECTORY
```
2. Run ''repo init'' to download the manifest repository first.
```shell
$ repo init -u https://github.com/khadas/android_manifest.git -b khadas-edge-2l-android14
```
3. Run ''repo sync'' to pull down the Android source tree.
```shell
$ repo sync
```
Do **NOT** add the `-j` option when running `repo sync`. The manifest file for this project includes a remote configuration for `gitkhadas` (https://git.khadas.com/) with `sync-j="1"`. Using `-j` with a higher concurrency value will override this restriction and likely cause sync failures.
The initial sync operation may take an hour or more to complete.
You might need to run above command repeatly if it fails halfway. Or you can try with this script instead:
```bash sync_helper.sh
repo sync
while [ $? = 1 ]; do
echo "Sync failed, repeat again:"
repo sync
done
```
If needed, press ''Ctrl''+''C'' to quit.
4. Begin a new branch for development.
```shell
$ repo start --all
```
===== Download from cloud drive =====
Chinese developers can download base package from cloud drive. Then synchronize the code.\\
1. Download the android source code base package from follow links.\\
* [[https://pan.baidu.com/s/1GdGPUoUAM2kL3PpmKpqr1Q?pwd=vmh5|Edge-2L android14 source code base package]]\\
2. Use the following command to unzip the base package and synchronize the code.
```shell
$ cat edge-2l-android14-sdk.tar.gz_* | tar -xzv
$ .repo/repo/repo sync -l
```
===== See Also =====
* [[https://source.android.com/source/downloading.html|Android Official Documents]]
* [[/products/sbc/edge-2l/development/android/build-android|Build Android]]