You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android Virtualization Framework is a new virtualization environment for Android
4
+
5
+
Among others, it is used to provide the Terminal App starting from Android 15 QPR2
6
+
7
+
This profile contains the necesarry services and kernel configs
8
+
9
+
The system changes have been taken from https://android.googlesource.com/platform/packages/modules/Virtualization/+/refs/heads/main/build/debian
10
+
11
+
# Building initial image
12
+
13
+
Assuming current folder is the root of this repo, build the following default.nix
14
+
15
+
```nix
16
+
(import <nixpkgs/nixos/lib/eval-config.nix> {
17
+
system = "aarch64-linux";
18
+
modules = [
19
+
(
20
+
{ modulesPath, ... }:
21
+
{
22
+
imports = [
23
+
./android/avf
24
+
];
25
+
}
26
+
)
27
+
];
28
+
}).config.system.build.avfImage
29
+
```
30
+
31
+
If the VM fails to start, include `./android/avf/debug.nix` and view the logs on a debuggable version of the Terminal app (there is no better way currently)
0 commit comments