blob: 3935f9369802e6746185d83bb36362b871ca7d33 [file] [view]
# Android Virtualization Framework (AVF)
Android Virtualization Framework (AVF) provides secure and private execution environments for
executing code. AVF is ideal for security-oriented use cases that require stronger isolation
assurances over those offered by Androids app sandbox.
Visit [our public doc site](https://source.android.com/docs/core/virtualization) to learn more about
what AVF is, what it is for, and how it is structured. This repository contains source code for
userspace components of AVF.
If you want a quick start, see the [getting started guideline](docs/getting_started.md)
and follow the steps there.
For in-depth explanations about individual topics and components, visit the following links.
AVF components:
* [pVM firmware](pvmfw/README.md)
* [Microdroid](microdroid/README.md)
* [Microdroid kernel](microdroid/kernel/README.md)
* [Microdroid payload](microdroid/payload/README.md)
* [vmbase](vmbase/README.md)
AVF APIs:
* [Java API](javalib/README.md)
* [VM Payload API](vm_payload/README.md)
How-Tos:
* [Building and running a demo app in Java](demo/README.md)
* [Building and running a demo app in C++](demo_native/README.md)
* [Debugging](docs/debug)
* [Using custom VM](docs/custom_vm.md)