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 | $ mkdir git_lfs |
- Create an empty directory to hold your working files:
1 | $ mkdir -p WORKING_DIRECTORY |
- 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 |
- 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.
TipYou 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
repo sync -j4
while [ $? = 1 ]; do
echo "Sync failed, repeat again:"
repo sync -j4
doneIf needed, press Ctrl-\ to quit.
- Begin a new branch for development:
1 | $ repo start <BRANCH_NAME> --all |