Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 1002 Bytes

README.mkdn

File metadata and controls

31 lines (28 loc) · 1002 Bytes

Getting Started

To get started with Android, you'll need to get familiar with Git and Repo.

  1. Set up your environment (use any of the hundreds of guides out there on XDA)

  2. Initialize repo of the required ROM, for example LineageOS

   mkdir lineage && cd lineage
   repo init -u https:/github.com/LineageOS/android/ -b lineage-15.1
  1. Now create a local_manifests dir and copy the required manifests in that folder.
   mkdir .repo/local_manifests
   wget -O .repo/local_manifests/lettuce.xml https://github.com/lettuce-oreo/local_manifest/raw/lineage-15.1/lineage-15.1-lettuce.xml
  1. Then to sync up:
   repo sync -f --force-sync

OR a more data-saving way to sync (but may cause errors later): :

   repo sync -c -f --force-sync --no-tags --no-clone-bundle --optimized-fetch --prune
  1. Build it !
   . build/envsetup.sh
   lunch lineage_lettuce-userdebug && mka bacon