]> glassweightruler.freedombox.rocks Git - waydroid.git/blob - README.md
anbox: Cleanup scripts
[waydroid.git] / README.md
1 Anbox-halium
2 ===========
3
4 Getting started
5 ---------------
6
7 To get started with Android/LineageOS, you'll need to get
8 familiar with [Repo](https://source.android.com/source/using-repo.html) and [Version Control with Git](https://source.android.com/source/version-control.html).
9
10 To initialize your local repository using the LineageOS trees, use a command like this:
11 ```
12 repo init -u git://github.com/LineageOS/android.git -b lineage-17.1
13 ```
14 Add anbox manifest:
15 ```
16 wget https://raw.githubusercontent.com/Anbox-halium/anbox-halium/lineage-17.1/anbox.xml -P .repo/local_manifests/
17 ```
18 Then to sync up:
19 ```
20 repo sync
21 ```
22 Then to apply anbox patches:
23 ```
24 anbox-patches/apply-patches.sh --mb
25 ```
26
27 How to build
28 ---------------
29 Please see the [LineageOS Wiki](https://wiki.lineageos.org/) for building environment setup.
30
31 To build anbox:
32 ```
33 . build/envsetup.sh
34 lunch lineage_anbox_arm64-userdebug
35 make systemimage -j$(nproc --all)
36 make vendorimage -j$(nproc --all)
37 ```