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 |
1) Create an empty directory to hold your working files:
1 | $ mkdir -p WORKING_DIRECTORY |
2) Run repo init
to download the manifest repository first:
1 | $ repo init -u https://github.com/khadas/android_manifest.git -b Mmallow |
NoteOnly available for VIM1.
1 | $ repo init -u https://github.com/khadas/android_manifest.git -b Nougat |
NoteAvailable for both VIM1 & VIM2.
1 | $ repo init -u https://github.com/khadas/android_manifest.git -b khadas-vims-pie |
3) 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.
TipsYou 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.
4) Begin a new branch for development:
1 | $ repo start <BRANCH_NAME> --all |