Download The Android Source Code

The Android Source Tree of our Khadas VIMs are hosted on Github. There are many different repositories.

Walk through the steps below to download the Source Code.

Steps

Firstly, install git-lfs tool for downloading Android 9.0 SDK

1
2
3
4
5
6
7
$ mkdir git_lfs
$ cd git_lfs
$ wget https://github.com/git-lfs/git-lfs/releases/download/v2.3.4/git-lfs-linux-amd64-2.3.4.tar.gz
$ tar xvzf git-lfs-linux-amd64-2.3.4.tar.gz
$ cd git-lfs-2.3.4
$ sudo ./install.sh
$ git lfs install
  1. Create an empty directory to hold your working files:
1
2
$ mkdir -p WORKING_DIRECTORY
$ cd WORKING_DIRECTORY
  1. Run repo init to download the manifest repository first:

android 9.0 64 bit:

1
$ repo init -u https://github.com/khadas/android_manifest.git -b khadas-vim3-p-64bit

android 9.0 32 bit:

1
$ repo init -u https://github.com/khadas/android_manifest.git -b khadas-vims-pie
  1. Run repo sync to pull down the Android Source Tree:
1
$ repo sync -j4

The initial sync operation may take an hour or more to complete.

Tip

You might need to run above command repeatly if it fails halfway. Or you can try with this script instead:

1
2
3
4
5
6
#!/bin/bash
repo sync -j4
while [ $? = 1 ]; do
echo "Sync failed, repeat again:"
repo sync -j4
done

If needed, press Ctrl-\ to quit.

  1. Begin a new branch for development:
1
$ repo start <BRANCH_NAME> --all

Further Reading