An open API service indexing awesome lists of open source software.

https://github.com/kryptocodes/local_manifest


https://github.com/kryptocodes/local_manifest

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

Getting Started
---------------

To get started with Android, you'll need to get
familiar with [Git and Repo](https://source.android.com/source/using-repo.html).

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

3. Initialize repo of the required ROM, for example crDroid
```
mkdir lineage && cd lineage
repo init -u https:/github.com/crdroidandroid/android/ -b 8.1
```
4. 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://raw.githubusercontent.com/LOS-lettuce/android_manifest/crdroid-8.1/crdroid-8.1-lettuce.xml'
```
5. Then to sync up:
```
repo sync -f --force-sync
```
6. Build it !
```
. build/envsetup.sh
lunch lineage_lettuce-userdebug && mka bacon
```