Free and opensource AOSP based Android for the world's most accessible development platforms.
This version is based on Android 10.0.0 Release 29.
- Google's required packages.
- Additional packages:
sudo apt-get install swig repo python-dev python3-dev libssl-dev flex bison
pip install Mako
mkdir -p GloDroid
cd GloDroid
repo init -u https://github.com/glodroid/glodroid_manifest
repo sync -cq
cd GloDroid
source ./build/envsetup.sh
lunch plus2e-userdebug
make sdcard
After successful build you should see sdcard.img in product output folder: (out/target/product//sdcard.img)
Use dd or any other utility to write it to the sdcard:
(Using dd utility is risky, make sure you are not using your local hard drive device as output)
cd ${ANDROID_ROOT}/
export card=/dev/sdX
dd if=out/target/product/plus2e/sdcard.img of=${card} bs=4k count=300000
sync
After sync command compleated you can safely extract your sdcard from the computer.