https://github.com/kryptocodes/local_manifest
https://github.com/kryptocodes/local_manifest
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kryptocodes/local_manifest
- Owner: kryptocodes
- Created: 2018-07-03T06:43:38.000Z (about 8 years ago)
- Default Branch: crdroid-8.1
- Last Pushed: 2018-07-03T06:43:57.000Z (about 8 years ago)
- Last Synced: 2025-02-23T14:38:47.840Z (over 1 year ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkdn
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
```